Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Do not declare empty sets
[simgrid.git] / teshsuite / xbt / graphxml_usage / CMakeLists.txt
1 set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}")
2
3 add_executable(graphxml_usage ${CMAKE_HOME_DIRECTORY}/teshsuite/xbt/graphxml_usage/graphxml_usage.c)
4
5 ### Add definitions for compile
6 if(NOT WIN32)
7   target_link_libraries(graphxml_usage simgrid m )
8 else()
9   target_link_libraries(graphxml_usage simgrid )
10 endif()
11
12 set(tesh_files
13   ${tesh_files}
14   ${CMAKE_CURRENT_SOURCE_DIR}/graphxml_usage.tesh
15   PARENT_SCOPE)
16 set(xml_files
17   ${xml_files}
18   ${CMAKE_CURRENT_SOURCE_DIR}/graph.xml
19   PARENT_SCOPE)
20 set(testsuite_src
21   ${testsuite_src}
22   ${CMAKE_CURRENT_SOURCE_DIR}/graphxml_usage.c
23   PARENT_SCOPE)