15 lines
319 B
CMake
15 lines
319 B
CMake
cmake_minimum_required(VERSION 3.11...3.15)
|
|
|
|
project(ModernCMakeExamples)
|
|
set(MODERN_CMAKE_BUILD_TESTING ON)
|
|
|
|
include(CTest)
|
|
|
|
add_subdirectory(simple-project)
|
|
add_subdirectory(extended-project)
|
|
|
|
add_subdirectory(root-usefile)
|
|
add_subdirectory(root-simple)
|
|
add_subdirectory(root-simple-3.11)
|
|
add_subdirectory(root-dict)
|