aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-12-06 10:30:35 -0500
committerKen Moore <ken@ixsystems.com>2017-12-06 10:30:35 -0500
commit663d346df63890d1bcac73f475ef09536bc9a7c0 (patch)
treefc4804d8e6dfa09bce785d5a350344f8108aa355 /src-qt5
parentFix up the systray tester utility to also show popup messages. (diff)
downloadlumina-663d346df63890d1bcac73f475ef09536bc9a7c0.tar.gz
lumina-663d346df63890d1bcac73f475ef09536bc9a7c0.tar.bz2
lumina-663d346df63890d1bcac73f475ef09536bc9a7c0.zip
Fix the LUtils.pri file: Forgot to remove a couple unused files from the includes.
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/core/libLumina/LUtils.pri10
1 files changed, 1 insertions, 9 deletions
diff --git a/src-qt5/core/libLumina/LUtils.pri b/src-qt5/core/libLumina/LUtils.pri
index 6ce0839c..da5a78d5 100644
--- a/src-qt5/core/libLumina/LUtils.pri
+++ b/src-qt5/core/libLumina/LUtils.pri
@@ -15,8 +15,7 @@ GIT_VERSION=$$system(git describe --always)
#DEFINES += BUILD_DATE='"\\\"$$system(date)\\\""'
#LuminaOS files
-HEADERS *= $${PWD}/LuminaOS.h \
- $${PWD}/OSInterface.h
+HEADERS *= $${PWD}/LuminaOS.h
# LuminaOS support functions (or fall back to generic one)
exists($${PWD}/LuminaOS-$${LINUX_DISTRO}.cpp){
@@ -26,13 +25,6 @@ exists($${PWD}/LuminaOS-$${LINUX_DISTRO}.cpp){
}else{
SOURCES *= $${PWD}/LuminaOS-template.cpp
}
-exists($${PWD}/OSInterface-$${LINUX_DISTRO}.cpp){
- SOURCES *= $${PWD}/OSInterface-$${LINUX_DISTRO}.cpp
-}else:exists($${PWD}/OSInterface-$${OS}.cpp){
- SOURCES *= $${PWD}/OSInterface-$${OS}.cpp
-}else{
- SOURCES *= $${PWD}/OSInterface-template.cpp
-}
#LUtils Files
SOURCES *= $${PWD}/LUtils.cpp
bgstack15