Previous Starting the project |
Parent Main Page |
Outline | Next The runExample function |
These two functions will be in the file runExample.cmake.
First we have to defined two target :The header of the file runExample.cmake is :
1 2 3 4 5 6 |
add_custom_target(run_all) add_custom_target(plot_all) add_dependencies(plot_all run_all) set(OUTPUT_PERF_DIR "${CMAKE_BINARY_DIR}/Performances") |
Previous Starting the project |
Parent Main Page |
Outline | Next The runExample function |