Location: LEMON/LEMON-official/test/CMakeLists.txt

Load file history
gravatar
kpeter (Peter Kovacs)
Many doc improvements for Circulation (#175) - More precise doc for members. - Several doc fixes. - Add doc for public types. - Better formulations. - Add useful notes to the problem description. - Use supply instead of excess in the doc. - Hide the doc of the traits class parameter. - Use \tparam for template parameters.
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR})
LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/lemon)
SET(TESTS
bfs_test
counter_test
dfs_test
digraph_test
dijkstra_test
dim_test
error_test
graph_copy_test
graph_test
graph_utils_test
heap_test
kruskal_test
maps_test
max_matching_test
random_test
path_test
time_measure_test
unionfind_test)
FOREACH(TEST_NAME ${TESTS})
ADD_EXECUTABLE(${TEST_NAME} ${TEST_NAME}.cc)
TARGET_LINK_LIBRARIES(${TEST_NAME} lemon)
ADD_TEST(${TEST_NAME} ${TEST_NAME})
ENDFOREACH(TEST_NAME)