Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
update the platforms to kill the :
[simgrid.git] / examples / simdag / scheduling / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 set(EXECUTABLE_OUTPUT_PATH "${PROJECT_DIRECTORY}/examples/simdag/scheduling/")
4
5 add_executable(minmin_test minmin_test.c)
6
7 ### Add definitions for compile
8 if(NOT WIN32)
9 target_link_libraries(minmin_test simgrid pthread m)
10 else(NOT WIN32)
11 target_link_libraries(minmin_test simgrid)
12 endif(NOT WIN32)