aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-08-23 09:32:41 -0400
committerKen Moore <ken@ixsystems.com>2017-08-23 09:32:41 -0400
commit3e902dd00aab3d45644790f9f2297e8da10bd382 (patch)
tree0cdaca7b8dd735c74b0ca3c0ddd1e45283534cdd /src-qt5
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-3e902dd00aab3d45644790f9f2297e8da10bd382.tar.gz
lumina-3e902dd00aab3d45644790f9f2297e8da10bd382.tar.bz2
lumina-3e902dd00aab3d45644790f9f2297e8da10bd382.zip
Couple minor changes to the OS-detect.pri
Make sure that the c++11 standard is set for all projects (some need it, some don't)
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/OS-detect.pri3
1 files changed, 3 insertions, 0 deletions
diff --git a/src-qt5/OS-detect.pri b/src-qt5/OS-detect.pri
index 8b7b0bc0..9f3019e3 100644
--- a/src-qt5/OS-detect.pri
+++ b/src-qt5/OS-detect.pri
@@ -126,4 +126,7 @@ isEmpty(OS){
OBJECTS_DIR=./.build/obj
RCC_DIR=./.build/rcc
QMAKE_DISTCLEAN += -r ./.build
+
+ #some other compile time flags
+ CONFIG *= c++11
}
bgstack15