mirror of
1
0
Fork 0
modern-cmake/examples/CMakeLists.txt

15 lines
308 B
CMake
Raw Permalink Normal View History

2024-03-26 07:27:52 +01:00
cmake_minimum_required(VERSION 3.11...3.29)
2018-03-29 12:27:23 +02:00
project(ModernCMakeExamples)
2019-08-07 07:06:55 +02:00
set(MODERN_CMAKE_BUILD_TESTING ON)
2018-03-29 12:27:23 +02:00
2019-08-07 07:06:55 +02:00
include(CTest)
2018-03-29 12:27:23 +02:00
2019-02-21 22:28:07 +01:00
add_subdirectory(simple-project)
2019-08-07 07:06:55 +02:00
add_subdirectory(extended-project)
2020-08-05 22:09:16 +02:00
add_subdirectory(fetch)
2019-02-21 22:28:07 +01:00
2018-05-01 17:18:27 +02:00
add_subdirectory(root-usefile)
2018-03-29 12:27:23 +02:00
add_subdirectory(root-simple)
add_subdirectory(root-dict)