Path: blob/master/Help/guide/tutorial/Step1/CMakeLists.txt
5018 views
# TODO1: Set the minimum required version of CMake to be 3.2312# TODO2: Create a project named Tutorial34# TODO3: Add an executable target called Tutorial to the project56# TODO4: Add the Tutorial/Tutorial.cxx source file to the Tutorial target78# TODO7: Add the MathFunctions library as a linked dependency9# to the Tutorial target1011# TODO11: Add the Tutorial subdirectory to the project1213# TODO5: Add a library target called MathFunctions to the project1415# TODO6: Add the source and header file located in Step1/MathFunctions to the16# MathFunctions target, note that the intended way to include the17# MathFunctions header is:18# #include <MathFunctions.h>1920# TODO13: Add the MathFunctions subdirectory to the project212223