aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStapleButter <thetotalworm@gmail.com>2017-07-05 21:17:15 +0200
committerStapleButter <thetotalworm@gmail.com>2017-07-05 21:17:15 +0200
commit599103486c8529d2fdacec8e83e5d18f9ad12f47 (patch)
tree637fe8c05b684d140ea6342fb31cdb246d8c5208
parent93ab7064b203c463607258cb3bc94f5da9729959 (diff)
cmake: attempt to add C++11 support.
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b5928e0..bfde168 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -45,4 +45,6 @@ target_link_libraries(${PROJECT_WX})
set(CMAKE_BUILD_TYPE Release)
+set (CMAKE_CXX_STANDARD 11)
+
install(TARGETS ${PROJECT_WX} RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)