Location: LEMON/LEMON-main/test/CMakeLists.txt - annotation

Load file history
gravatar
deba@inf.elte.hu
Correcting changeSource interface and documentation - The changeSource() and changeTarget() is renamed to changeU() and changeV() in undirected graphs - The changeSource(a, n) and changeTarget(a, n) is removed from undirected graphs - Correcting invalidating iterators in documentation
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
  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)