Skip to content
Snippets Groups Projects
Commit 98a9aba4 authored by Yuri Kunde Schlesner's avatar Yuri Kunde Schlesner
Browse files

Remove C++14/1y requirement

parent 82528ba7
No related branches found
No related tags found
No related merge requests found
...@@ -5,8 +5,7 @@ cmake_minimum_required(VERSION 2.8.11) ...@@ -5,8 +5,7 @@ cmake_minimum_required(VERSION 2.8.11)
project(citra) project(citra)
if (NOT MSVC) if (NOT MSVC)
# -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++11 -Wno-attributes")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++1y -Wno-attributes")
else() else()
# Silence deprecation warnings # Silence deprecation warnings
add_definitions(/D_CRT_SECURE_NO_WARNINGS) add_definitions(/D_CRT_SECURE_NO_WARNINGS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment