Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[src/simdag,examples/simdag] add the simulator inside the dot loader if the user...
[simgrid.git] / examples / simdag / dot / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}")                       
4
5 add_executable(dot_test dot_test.c)                                     #add_executable(<name_of_target> <src list>)
6 add_executable(simulate_dot simulate_dot.c)                                     #add_executable(<name_of_target> <src list>)
7
8 ### Add definitions for compile
9 target_link_libraries(dot_test simgrid m pthread -fprofile-arcs)        #target_link_libraries(<name_of_targe> <dependencies>)
10 target_link_libraries(simulate_dot simgrid m pthread -fprofile-arcs)    #target_link_libraries(<name_of_targe> <dependencies>)