aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-08-11 13:48:42 -0400
committerKen Moore <ken@ixsystems.com>2017-08-11 13:48:42 -0400
commit84129b4f18c528c9b0e0aae51d096d7ccdaf4217 (patch)
tree34f2b1773a49a5db86819289b0c8ec0ee8fec3a7 /src-qt5
parentAdd a few missing language files to lumina-pdf. Should match other projects now. (diff)
downloadlumina-84129b4f18c528c9b0e0aae51d096d7ccdaf4217.tar.gz
lumina-84129b4f18c528c9b0e0aae51d096d7ccdaf4217.tar.bz2
lumina-84129b4f18c528c9b0e0aae51d096d7ccdaf4217.zip
Quick update to the .pro for some extra info.
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro6
1 files changed, 4 insertions, 2 deletions
diff --git a/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro b/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro
index a4093aff..e17e59c5 100644
--- a/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro
+++ b/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro
@@ -1,7 +1,7 @@
include("$${PWD}/../../OS-detect.pri")
-QT += core gui
-greaterThan(QT_MAJOR_VERSION, 4): QT += widgets concurrent
+QT *= core gui
+greaterThan(QT_MAJOR_VERSION, 4): QT *= widgets concurrent
TARGET = lumina-pdf
@@ -15,6 +15,8 @@ target.path = $${L_BINDIR}
include(../../core/libLumina/LUtils.pri) #includes LUtils
include(../../core/libLumina/LuminaXDG.pri)
+message("Qt Modules Needed: $${QT}")
+
SOURCES += main.cpp \
mainUI.cpp
bgstack15