Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update CMakeLists for windows
[simgrid.git] / teshsuite / simdag / network / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 set(EXECUTABLE_OUTPUT_PATH "${PROJECT_DIRECTORY}/teshsuite/simdag/network/")
4
5 add_executable(test_reinit_costs test_reinit_costs.c)
6
7
8 ### Add definitions for compile
9 if(NOT WIN32)
10 target_link_libraries(test_reinit_costs simgrid m pthread )
11 else(NOT WIN32)
12 target_link_libraries(test_reinit_costs simgrid)
13 endif(NOT WIN32)
14