aboutsummaryrefslogtreecommitdiff
path: root/lumina-wm-INCOMPLETE/lumina-wm.pro
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-01-11 15:51:52 -0500
committerKen Moore <moorekou@gmail.com>2016-01-11 15:51:52 -0500
commit4a94520f2e6eb55f9d651321b15ed638404a66bb (patch)
tree8d4b3f7d8ec2cf262e4cfc595ab86768b3820f81 /lumina-wm-INCOMPLETE/lumina-wm.pro
parentStart the work of abstracting out the OS-detection/build system from the indi... (diff)
downloadlumina-4a94520f2e6eb55f9d651321b15ed638404a66bb.tar.gz
lumina-4a94520f2e6eb55f9d651321b15ed638404a66bb.tar.bz2
lumina-4a94520f2e6eb55f9d651321b15ed638404a66bb.zip
Large cleanup of the Lumina project files and OS-detection/support systems.
1) Setup all the subprojects to use the new OS-detect.pri subfile 2) Automatically detect/set the build datetime string for the project when qmake is run. 3) Automatically read/embed the current GIT revision into the Lumina version string 4) Remove the old QtConfig shortcut function from the LuminaOS class (and all templates).
Diffstat (limited to 'lumina-wm-INCOMPLETE/lumina-wm.pro')
-rw-r--r--lumina-wm-INCOMPLETE/lumina-wm.pro23
1 files changed, 4 insertions, 19 deletions
diff --git a/lumina-wm-INCOMPLETE/lumina-wm.pro b/lumina-wm-INCOMPLETE/lumina-wm.pro
index aba210fe..a1a4d2f8 100644
--- a/lumina-wm-INCOMPLETE/lumina-wm.pro
+++ b/lumina-wm-INCOMPLETE/lumina-wm.pro
@@ -1,30 +1,17 @@
+include("$${PWD}/../OS-detect.pri")
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets x11extras
TARGET = lumina-wm
-isEmpty(PREFIX) {
- PREFIX = /usr/local
-}
target.path = $$DESTDIR$$PREFIX/bin
-isEmpty(LIBPREFIX) {
- LIBPREFIX = $$PREFIX/lib
-}
+LIBS += -lLuminaUtils -lxcb -lxcb-damage -lxcb-composite -lxcb-screensaver -lxcb-util
-LIBS += -L../libLumina -L$$LIBPREFIX -lLuminaUtils -lxcb -lxcb-damage -lxcb-composite -lxcb-screensaver -lxcb-util
-QMAKE_LIBDIR = ../libLumina
DEPENDPATH += ../libLumina
TEMPLATE = app
-isEmpty(QT5LIBDIR) {
- QT5LIBDIR = $$PREFIX/lib/qt5
-}
-
-LRELEASE = $$QT5LIBDIR/bin/lrelease
-
-
SOURCES += main.cpp \
WMSession.cpp \
LScreenSaver.cpp \
@@ -49,8 +36,6 @@ FORMS += LLockScreen.ui
#Now add in all the screensaver animation plugins
include(animations/animations.pri)
-INCLUDEPATH += ../libLumina $$PREFIX/include
-
TRANSLATIONS = i18n/lumina-wm_af.ts \
i18n/lumina-wm_ar.ts \
i18n/lumina-wm_az.ts \
@@ -114,8 +99,8 @@ TRANSLATIONS = i18n/lumina-wm_af.ts \
i18n/lumina-wm_zh_TW.ts \
i18n/lumina-wm_zu.ts
-dotrans.path=$$PREFIX/share/Lumina-DE/i18n/
-dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$$PREFIX/share/Lumina-DE/i18n/
+dotrans.path=$${L_SHAREDIR}/Lumina-DE/i18n/
+dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/Lumina-DE/i18n/
INSTALLS += target dotrans
bgstack15