CMakeLists.txt 748 B

123456789101112131415161718192021
  1. # TODO1: Set the minimum required version of CMake to be 3.23
  2. # TODO2: Create a project named Tutorial
  3. # TODO3: Add an executable target called Tutorial to the project
  4. # TODO4: Add the Tutorial/Tutorial.cxx source file to the Tutorial target
  5. # TODO7: Add the MathFunctions library as a linked dependency
  6. # to the Tutorial target
  7. # TODO11: Add the Tutorial subdirectory to the project
  8. # TODO5: Add a library target called MathFunctions to the project
  9. # TODO6: Add the source and header file located in Step1/MathFunctions to the
  10. # MathFunctions target, note that the intended way to include the
  11. # MathFunctions header is:
  12. # #include <MathFunctions.h>
  13. # TODO13: Add the MathFunctions subdirectory to the project