Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Help/guide/tutorial/Step1/CMakeLists.txt
5018 views
1
# TODO1: Set the minimum required version of CMake to be 3.23
2
3
# TODO2: Create a project named Tutorial
4
5
# TODO3: Add an executable target called Tutorial to the project
6
7
# TODO4: Add the Tutorial/Tutorial.cxx source file to the Tutorial target
8
9
# TODO7: Add the MathFunctions library as a linked dependency
10
# to the Tutorial target
11
12
# TODO11: Add the Tutorial subdirectory to the project
13
14
# TODO5: Add a library target called MathFunctions to the project
15
16
# TODO6: Add the source and header file located in Step1/MathFunctions to the
17
# MathFunctions target, note that the intended way to include the
18
# MathFunctions header is:
19
# #include <MathFunctions.h>
20
21
# TODO13: Add the MathFunctions subdirectory to the project
22
23