Replace -std=c++11 with -std=c++0x
c++0x is being supported for gcc < 4.6
This commit is contained in:
parent
4305fb79b8
commit
e816a0823c
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ find_package(Qt5Core REQUIRED NO_MODULE)
|
|||
|
||||
find_package(Qt5Quick REQUIRED NO_MODULE)
|
||||
|
||||
add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0 -std=c++11)
|
||||
add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0 -std=c++0x)
|
||||
|
||||
if(KDE_PLATFORM_FEATURE_DISABLE_DEPRECATED)
|
||||
set(KDE_NO_DEPRECATED TRUE)
|
||||
|
|
Loading…
Reference in a new issue