test/CMakeLists.txt
author Peter Kovacs <kpeter@inf.elte.hu>
Mon, 22 Sep 2008 15:33:23 +0200
changeset 278 931190050520
parent 203 215bfc30b14f
child 326 64ad48007fb2
child 441 4f7224faf3bd
child 620 d8ca76573eb3
permissions -rw-r--r--
Improve the function-type interface of bfs, dfs, and dijkstra (ticket #96)
- BfsWizard and DfsWizard have run(s), run(s,t), and run() functions,
DijkstraWizard has run(s) and run(s,t) functions.
- Set NodeMap<T> instead of NullMap as PredMap and DistMap in the default
traits classes for the function-type interface.
- Modify the related test files.
- Doc improvements.
- Bug fix in concepts/path.h.
     1 INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR})
     2 
     3 LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/lemon)
     4 
     5 SET(TESTS
     6   bfs_test
     7   counter_test
     8   dfs_test
     9   digraph_test
    10   dijkstra_test
    11   dim_test
    12   error_test
    13   graph_copy_test
    14   graph_test
    15   graph_utils_test
    16   heap_test
    17   kruskal_test
    18   maps_test
    19   random_test
    20   path_test
    21   time_measure_test
    22   unionfind_test)
    23 
    24 FOREACH(TEST_NAME ${TESTS})
    25   ADD_EXECUTABLE(${TEST_NAME} ${TEST_NAME}.cc)
    26   TARGET_LINK_LIBRARIES(${TEST_NAME} lemon)
    27   ADD_TEST(${TEST_NAME} ${TEST_NAME})
    28 ENDFOREACH(TEST_NAME)