This website works better with JavaScript.
Home
Explore
Help
Sign In
cpp
/
cmakemodules
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
set language standard variables in example project
master
Sascha Kratky
9 years ago
parent
3e613baeb3
commit
5e61a44383
1 changed files
with
5 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
CMakeLists.txt
+ 5
- 0
CMakeLists.txt
View File
@@ -11,6 +11,11 @@ project (CotireExample)
set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMake")
if (NOT CMAKE_VERSION VERSION_LESS "3.1.0")
set (CMAKE_CXX_STANDARD "98")
set (CMAKE_CXX_EXTENSIONS OFF)
endif()
include(cotire)
add_subdirectory(src)
Write
Preview
Loading…
Cancel
Save