Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Help/guide/tutorial/Step5/CMakeLists.txt
5017 views
1
cmake_minimum_required(VERSION 3.23)
2
3
project(Tutorial)
4
5
option(TUTORIAL_BUILD_UTILITIES "Build the Tutorial executable" ON)
6
option(TUTORIAL_USE_STD_SQRT "Use std::sqrt" OFF)
7
8
if(TUTORIAL_BUILD_UTILITIES)
9
add_subdirectory(Tutorial)
10
endif()
11
12
add_subdirectory(MathFunctions)
13
14