We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7f2e52 commit 89eda0dCopy full SHA for 89eda0d
CMakeLists.txt
@@ -1,4 +1,4 @@
1
-cmake_minimum_required(VERSION 2.8.12)
+cmake_minimum_required(VERSION 3.2.0)
2
3
project(StepMania)
4
StepmaniaCore.cmake
@@ -45,6 +45,11 @@ include("${SM_CMAKE_DIR}/SMDefs.cmake")
45
# Put the predefined targets in separate groups.
46
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
47
48
+# Enforce the highest C++ standard used in the code base
49
+set(CMAKE_CXX_STANDARD 11)
50
+set(CMAKE_CXX_STANDARD_REQUIRED ON)
51
+set(CMAKE_CXX_EXTENSIONS OFF)
52
+
53
# Set up the linker flags for MSVC builds.
54
configure_msvc_runtime()
55
0 commit comments