File tree Expand file tree Collapse file tree 1 file changed +17
-17
lines changed
Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change 1- cmake_minimum_required (VERSION 3.10)
2-
3- project (fafnir VERSION 1.0.1.0 )
4-
5- if (${CMAKE_CXX_COMPILER_ID} MATCHES "Clang|GNU|Intel" )
6- set (CMAKE_CXX_FLAGS "-std=c++17 ${CMAKE_CXX_FLAGS} " )
7- elseif (${CMAKE_CXX_COMPILER_ID} MATCHES "MSVC" )
8- set (CMAKE_CXX_FLAGS "/std:c++17 ${CMAKE_CXX_FLAGS} " )
9- endif ()
10-
11- enable_testing ()
12-
13- add_subdirectory (src)
14- add_subdirectory (tests)
15-
16- install (FILES install .bat README.md LICENSE DESTINATION "." )
17- install (DIRECTORY scripts assets DESTINATION "." )
1+ cmake_minimum_required (VERSION 3.10)
2+
3+ project (fafnir LANGUAGES CXX VERSION 1.0.1.1 )
4+
5+ if (${CMAKE_CXX_COMPILER_ID} MATCHES "Clang|GNU|Intel" )
6+ set (CMAKE_CXX_FLAGS "-std=c++17 ${CMAKE_CXX_FLAGS} " )
7+ elseif (${CMAKE_CXX_COMPILER_ID} MATCHES "MSVC" )
8+ set (CMAKE_CXX_FLAGS "/std:c++17 ${CMAKE_CXX_FLAGS} " )
9+ endif ()
10+
11+ enable_testing ()
12+
13+ add_subdirectory (src)
14+ add_subdirectory (tests)
15+
16+ install (FILES install .bat README.md LICENSE DESTINATION "." )
17+ install (DIRECTORY scripts assets DESTINATION "." )
You can’t perform that action at this time.
0 commit comments