diff options
author | Ken Moore <ken@ixsystems.com> | 2017-08-03 12:25:14 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-08-03 14:04:05 -0400 |
commit | 9787abdd5bc1378c7252ae710dc58ad582b447df (patch) | |
tree | 0552f7e557298527cc2f50a436620de2be7c9966 /src-qt5/OS-detect.pri | |
parent | Cleanup the lumina-theme-engine subproject (diff) | |
download | lumina-9787abdd5bc1378c7252ae710dc58ad582b447df.tar.gz lumina-9787abdd5bc1378c7252ae710dc58ad582b447df.tar.bz2 lumina-9787abdd5bc1378c7252ae710dc58ad582b447df.zip |
Fix up a bit more of the lumina-theme-engine
1. Adjust the build directories for all projects
2. Add lumina-theme-engine to the "core" meta-project
3. flip the names of the "dusk" and "darker" color schemes
4. Add a simple drop-down menu for standard colors when editing a stylesheet
5. Ensure the find colors/qss routines skip duplicate directory entries
Diffstat (limited to 'src-qt5/OS-detect.pri')
-rw-r--r-- | src-qt5/OS-detect.pri | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src-qt5/OS-detect.pri b/src-qt5/OS-detect.pri index 76d09642..8b7b0bc0 100644 --- a/src-qt5/OS-detect.pri +++ b/src-qt5/OS-detect.pri @@ -121,9 +121,9 @@ isEmpty(OS){ } #Some conf to redirect intermediate stuff in separate dirs - UI_DIR=$${PWD}/.build/ui/ - MOC_DIR=$${PWD}/.build/moc/ - OBJECTS_DIR=$${PWD}/.build/obj - RCC_DIR=$${PWD}/.build/rcc - QMAKE_DISTCLEAN += -r $${PWD}/.build + UI_DIR=./.build/ui/ + MOC_DIR=./.build/moc/ + OBJECTS_DIR=./.build/obj + RCC_DIR=./.build/rcc + QMAKE_DISTCLEAN += -r ./.build } |