Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
moving graphicator from teshsuite to tools/graphicator/
[simgrid.git] / tools / graphicator / CMakeLists.txt
diff --git a/tools/graphicator/CMakeLists.txt b/tools/graphicator/CMakeLists.txt
new file mode 100644 (file)
index 0000000..19ca440
--- /dev/null
@@ -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)
+