blob: 7d090519ab0e2338c0f11a090505a9b26a06c636 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
cmake_minimum_required(VERSION 3.23)
project(Tutorial)
option(TUTORIAL_BUILD_UTILITIES "Build the Tutorial executable" ON)
# TODO1: Add a default-OFF option named TUTORIAL_USE_STD_SQRT, with a doc
# string of "Use std::sqrt"
if(TUTORIAL_BUILD_UTILITIES)
add_subdirectory(Tutorial)
endif()
add_subdirectory(MathFunctions)
add_subdirectory(Vendor)
|