demo/CMakeLists.txt
author Balazs Dezso <deba@inf.elte.hu>
Mon, 28 Jul 2008 11:22:50 +0200
changeset 235 b46d2787e9c2
parent 141 96f81c791f0c
child 473 17d918051964
child 499 d8ca76573eb3
permissions -rw-r--r--
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
     1 INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR})
     2 
     3 LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/lemon)
     4 
     5 SET(DEMOS
     6   arg_parser_demo
     7   graph_to_eps_demo
     8   lgf_demo)
     9 
    10 FOREACH(DEMO_NAME ${DEMOS})
    11   ADD_EXECUTABLE(${DEMO_NAME} ${DEMO_NAME}.cc)
    12   TARGET_LINK_LIBRARIES(${DEMO_NAME} lemon)
    13 ENDFOREACH(DEMO_NAME)