11 lines
210 B
CMake
11 lines
210 B
CMake
cmake_minimum_required(VERSION 3.11)
|
|
|
|
project(ModernCMakeExamples)
|
|
|
|
enable_testing()
|
|
|
|
add_subdirectory(root-usefile)
|
|
add_subdirectory(root-simple)
|
|
add_subdirectory(root-simple-3.11)
|
|
add_subdirectory(root-dict)
|