demo/CMakeLists.txt
author Peter Kovacs <kpeter@inf.elte.hu>
Mon, 12 Jan 2009 07:52:48 +0100
changeset 463 a2fd8b8d0b30
parent 141 96f81c791f0c
child 473 17d918051964
child 510 d8ca76573eb3
permissions -rw-r--r--
Greatly extend and improve the test file for adaptors (#67)

- Add concept checks for the alterable, extendable, erasable
and clearable adaptors.
- Add test cases for modifying the underlying graphs through adaptors
whenever it is possible.
- Check the conversions between Node, Arc and Edge types.
- Add more test cases for the adaptor-specific functions and maps:
enable(), disable(), status(), forward(), backward(), CombinedArcMap,
CombinedNodeMap, ResidualCapacity etc.
- Use checkGraphIncEdgeArcLists() to simplify the test cases for
undirected graphs.
- Add test cases that use static graph structure (GridGraph) with
several adaptors combined.
- Add comments for the test cases.
alpar@225
     1
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR})
ladanyi@141
     2
alpar@225
     3
LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/lemon)
ladanyi@141
     4
alpar@225
     5
SET(DEMOS
ladanyi@141
     6
  arg_parser_demo
ladanyi@141
     7
  graph_to_eps_demo
ladanyi@141
     8
  lgf_demo)
ladanyi@141
     9
alpar@225
    10
FOREACH(DEMO_NAME ${DEMOS})
alpar@225
    11
  ADD_EXECUTABLE(${DEMO_NAME} ${DEMO_NAME}.cc)
alpar@225
    12
  TARGET_LINK_LIBRARIES(${DEMO_NAME} lemon)
alpar@225
    13
ENDFOREACH(DEMO_NAME)