X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9b1376be778d6666bee2de4b185c1769a09d2cbb..ff7c02a39d0d8b10430509c322578e293fee8215:/tools/graphicator/CMakeLists.txt diff --git a/tools/graphicator/CMakeLists.txt b/tools/graphicator/CMakeLists.txt new file mode 100644 index 0000000000..19ca440068 --- /dev/null +++ b/tools/graphicator/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 2.6) + +set(EXECUTABLE_OUTPUT_PATH "${CMAKE_BINARY_DIR}/bin") + +add_executable(graphicator graphicator.c) + +### Add definitions for compile +if(NOT WIN32) +target_link_libraries(graphicator simgrid m pthread ) +else(NOT WIN32) +target_link_libraries(graphicator simgrid ) +endif(NOT WIN32) +