diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-15 22:06:03 -0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-16 01:08:14 -0200 |
commit | 731b31fe972be473500db3a130aab79ba21a0c08 (patch) | |
tree | 703c0580d22922056ce662c67124e40a6f517e61 | |
parent | b5d9f7364e18aa2f596f6c8a466b1544a6c33a59 (diff) |
Switch to C++14 to use std::make_unique
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 61d5d524a..63738b5ff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,8 @@ cmake_minimum_required(VERSION 2.8.11) project(citra) if (NOT MSVC) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wno-attributes") + # -std=c++14 is only supported on very new compilers, so use the old c++1y alias instead. + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++1y -Wno-attributes") else() # Silence deprecation warnings add_definitions(/D_CRT_SECURE_NO_WARNINGS) |