diff options
| author | StapleButter <thetotalworm@gmail.com> | 2017-07-05 21:17:15 +0200 |
|---|---|---|
| committer | StapleButter <thetotalworm@gmail.com> | 2017-07-05 21:17:15 +0200 |
| commit | 599103486c8529d2fdacec8e83e5d18f9ad12f47 (patch) | |
| tree | 637fe8c05b684d140ea6342fb31cdb246d8c5208 | |
| parent | 93ab7064b203c463607258cb3bc94f5da9729959 (diff) | |
cmake: attempt to add C++11 support.
| -rw-r--r-- | CMakeLists.txt | 2 |
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) |