test/CMakeLists.txt
author Alpar Juttner <alpar@cs.elte.hu>
Fri, 21 Nov 2008 14:11:29 +0000
changeset 389 660db48f324f
parent 326 64ad48007fb2
child 410 eac19fb31a09
permissions -rw-r--r--
Port preflow push max flow alg. from svn -r3516 (#176)
Namely,
- port the files
- apply the migrate script
- apply the unify script
- break the long lines in lemon/preflow.h
- convert the .dim test file to .lgf
- fix compilation problems
     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   max_matching_test
    20   random_test
    21   path_test
    22   time_measure_test
    23   unionfind_test)
    24 
    25 FOREACH(TEST_NAME ${TESTS})
    26   ADD_EXECUTABLE(${TEST_NAME} ${TEST_NAME}.cc)
    27   TARGET_LINK_LIBRARIES(${TEST_NAME} lemon)
    28   ADD_TEST(${TEST_NAME} ${TEST_NAME})
    29 ENDFOREACH(TEST_NAME)