COIN-OR::LEMON - Graph Library

source: lemon-main/test/CMakeLists.txt @ 949:54464584b157

Last change on this file since 949:54464584b157 was 949:54464584b157, checked in by Alpar Juttner <alpar@…>, 13 years ago

Allow lgf file without Arc maps (#382)

A single '-' character in the @arcs sectio header indicates that
there is no arc map.

File size: 561 bytes
Line 
1INCLUDE_DIRECTORIES(
2  ${CMAKE_SOURCE_DIR}
3  ${PROJECT_BINARY_DIR}
4)
5
6LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/lemon)
7
8SET(TESTS
9  bfs_test
10  counter_test
11  dfs_test
12  digraph_test
13  dijkstra_test
14  dim_test
15  error_test
16  graph_copy_test
17  graph_test
18  graph_utils_test
19  heap_test
20  kruskal_test
21  lgf_test
22  maps_test
23  random_test
24  path_test
25  time_measure_test
26  unionfind_test)
27
28FOREACH(TEST_NAME ${TESTS})
29  ADD_EXECUTABLE(${TEST_NAME} ${TEST_NAME}.cc)
30  TARGET_LINK_LIBRARIES(${TEST_NAME} lemon)
31  ADD_TEST(${TEST_NAME} ${TEST_NAME})
32ENDFOREACH(TEST_NAME)
Note: See TracBrowser for help on using the repository browser.