CMakeLists.txt 275 B

123456789101112
  1. cmake_minimum_required(VERSION 3.23)
  2. project(Tutorial)
  3. option(TUTORIAL_BUILD_UTILITIES "Build the Tutorial executable" ON)
  4. option(TUTORIAL_USE_STD_SQRT "Use std::sqrt" OFF)
  5. if(TUTORIAL_BUILD_UTILITIES)
  6. add_subdirectory(Tutorial)
  7. endif()
  8. add_subdirectory(MathFunctions)