aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-02-27 12:45:57 -0500
committerKen Moore <ken@ixsystems.com>2017-02-27 12:45:57 -0500
commit4e5e857d4cd0139a37ea5138bc13f1dd6b24a9c2 (patch)
treeb05ec5e92a41adc51743e028c25d7d44029b9484
parentClean up the compilation warnings with the separate "getPage" routines in lum... (diff)
downloadlumina-4e5e857d4cd0139a37ea5138bc13f1dd6b24a9c2.tar.gz
lumina-4e5e857d4cd0139a37ea5138bc13f1dd6b24a9c2.tar.bz2
lumina-4e5e857d4cd0139a37ea5138bc13f1dd6b24a9c2.zip
Parse the OS-detect.pri file within the top-level project file. This will ensure that the OS detection messages are printed out no matter which dir you run qmake within.
-rw-r--r--lumina.pro3
1 files changed, 3 insertions, 0 deletions
diff --git a/lumina.pro b/lumina.pro
index 79e32e9f..190b7e9a 100644
--- a/lumina.pro
+++ b/lumina.pro
@@ -3,4 +3,7 @@
#=======================================================
TEMPLATE = subdirs
+#Load the OS detect pri file here so that it will print output as needed
+include(src-qt5/OS-detect.pri)
+
SUBDIRS+= src-qt5
bgstack15