diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-05 17:22:29 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-05 17:22:29 +0200 |
commit | b77a3539a46f9ac8fc06ee701e00512aac4c7550 (patch) | |
tree | 9c5470a771ed6295875e9e5b5dd1313446f3974f /cmake/opentrack-platform.cmake | |
parent | 2ca5ae5fc7a0bf752dc22026b627c0a3a742270b (diff) |
cmake: switch back to c++14
Lambdas with explicit return values are fun.
Diffstat (limited to 'cmake/opentrack-platform.cmake')
-rw-r--r-- | cmake/opentrack-platform.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/opentrack-platform.cmake b/cmake/opentrack-platform.cmake index 0cb596a2..e112e86a 100644 --- a/cmake/opentrack-platform.cmake +++ b/cmake/opentrack-platform.cmake @@ -53,7 +53,7 @@ if(APPLE) endif() if(CMAKE_COMPILER_IS_GNUCXX OR APPLE) - set(CMAKE_CXX_FLAGS " -std=c++11 ${CMAKE_CXX_FLAGS} ") + set(CMAKE_CXX_FLAGS " -std=c++14 ${CMAKE_CXX_FLAGS} ") endif() set_property(GLOBAL PROPERTY USE_FOLDERS OFF) |