Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simcall is not directly parsable since it contains inlined structures. We should...
[simgrid.git] / tools / gras / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 set(EXECUTABLE_OUTPUT_PATH "${CMAKE_BINARY_DIR}/bin")
4
5 add_executable(gras_stub_generator stub_generator.c unix_stub_generator.c windows_stub_generator.c)
6 add_executable(struct_diff struct_diff.c)
7
8 ### Add definitions for compile
9 if(NOT WIN32)
10     target_link_libraries(gras_stub_generator simgrid pthread m)
11     target_link_libraries(struct_diff         simgrid pthread m)
12 else(NOT WIN32)
13     target_link_libraries(gras_stub_generator simgrid)
14     target_link_libraries(struct_diff         simgrid)
15 endif(NOT WIN32)