From 4a94520f2e6eb55f9d651321b15ed638404a66bb Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 11 Jan 2016 15:51:52 -0500 Subject: 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). --- lumina-wm-INCOMPLETE/lumina-wm.pro | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) (limited to 'lumina-wm-INCOMPLETE/lumina-wm.pro') 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 -- cgit