aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/lumina-desktop.pro
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-12-18 07:47:48 -0500
committerKen Moore <ken@pcbsd.org>2014-12-18 07:47:48 -0500
commit71c2fda95224f0a04316c5f1059628d33564ca43 (patch)
treeca74dbe49dd2f555e73893e7f5f06154d6dab763 /lumina-desktop/lumina-desktop.pro
parentOops, forgot to add knowledge of the new "Wine" app category to the userbutton. (diff)
downloadlumina-71c2fda95224f0a04316c5f1059628d33564ca43.tar.gz
lumina-71c2fda95224f0a04316c5f1059628d33564ca43.tar.bz2
lumina-71c2fda95224f0a04316c5f1059628d33564ca43.zip
Commit a checkpoint on the conversion of Lumina to Qt5.
It is functional at the moment, but still has a few rough edges with regards to the X11 background interface (due to the move from XLib to XCB in Qt5). This reulst in some of the window manager interactions not behaving properly (such as sticky status on panels).
Diffstat (limited to 'lumina-desktop/lumina-desktop.pro')
-rw-r--r--lumina-desktop/lumina-desktop.pro8
1 files changed, 5 insertions, 3 deletions
diff --git a/lumina-desktop/lumina-desktop.pro b/lumina-desktop/lumina-desktop.pro
index 8772b661..02581bdc 100644
--- a/lumina-desktop/lumina-desktop.pro
+++ b/lumina-desktop/lumina-desktop.pro
@@ -1,5 +1,6 @@
-QT += core gui network phonon
+QT += core gui network
+greaterThan(QT_MAJOR_VERSION, 4): QT += widgets x11extras multimedia
TARGET = Lumina-DE
isEmpty(PREFIX) {
@@ -7,7 +8,7 @@ isEmpty(PREFIX) {
}
target.path = $$PREFIX/bin
-LIBS += -L../libLumina -lLuminaUtils -lXdamage -lX11
+LIBS += -L../libLumina -lLuminaUtils -lXdamage -lX11 -lxcb -lxcb-damage
QMAKE_LIBDIR = ../libLumina
DEPENDPATH += ../libLumina
@@ -16,7 +17,7 @@ TEMPLATE = app
openbsd-g++4 {
LRELEASE = lrelease4
} else {
- LRELEASE = lrelease-qt4
+ LRELEASE = /usr/local/lib/qt5/bin/lrelease
}
SOURCES += main.cpp \
@@ -47,6 +48,7 @@ SOURCES += main.cpp \
HEADERS += Globals.h \
WMProcess.h \
+ LXcbEventFilter.h \
LSession.h \
LDesktop.h \
LPanel.h \
bgstack15