summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevron Rees <tripzero.kev@gmail.com>2015-10-30 10:15:31 -0700
committerKevron Rees <tripzero.kev@gmail.com>2015-10-30 10:15:31 -0700
commitf58289bfe99968d702a08e6066d18325aa5a01f9 (patch)
tree36e3d0eb975401683dac7c0ef901d04c73df170a
parent58569fac42bb8b6e1ad208caef5db8a51befc87f (diff)
downloadautomotive-message-broker-f58289bfe99968d702a08e6066d18325aa5a01f9.tar.gz
cmake: explicitly set std to c++14
Signed-off-by: Kevron Rees <tripzero.kev@gmail.com>
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0c61454a..158db1ed 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -52,7 +52,7 @@ set(QMAKE_INSTALL_PATH "/usr/bin/qmake" CACHE PATH "qmake executable path")
#turn on -fpic/-fpie:
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpie -pie -std=c++1y")
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpie -pie -std=c++14")
include (CMakeForceCompiler)