1
0
mirror of synced 2024-12-22 20:50:00 +01:00
modern-cmake/examples/CMakeLists.txt

15 lines
308 B
CMake
Raw Normal View History

2024-11-07 14:42:03 +00:00
cmake_minimum_required(VERSION 3.15...3.31)
2018-03-29 12:27:23 +02:00
project(ModernCMakeExamples)
2019-08-07 05:06:55 +00:00
set(MODERN_CMAKE_BUILD_TESTING ON)
2018-03-29 12:27:23 +02:00
2019-08-07 05:06:55 +00: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 05:06:55 +00:00
add_subdirectory(extended-project)
2020-08-05 16:09:16 -04: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)