demo/CMakeLists.txt
author Balazs Dezso <deba@inf.elte.hu>
Fri, 13 Feb 2009 13:29:28 +0100
changeset 512 9b9ffe7d9b75
parent 473 17d918051964
child 549 ba659d676331
permissions -rw-r--r--
Fixes for MSVC 2008 in grap_adaptors.h and edge_set.h (#194)

Several renamings and changes in adaptors and edge sets

- Fixing scope usage for MSVC
- ResidualDigraph based on SubDigraph instead of FilterArcs
- Use initialize() in adaptors and edge sets
- Wrap ListDigraph for edge set tests
     1 INCLUDE_DIRECTORIES(
     2   ${CMAKE_SOURCE_DIR}
     3   ${CMAKE_BINARY_DIR}
     4 )
     5 
     6 LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/lemon)
     7 
     8 SET(DEMOS
     9   arg_parser_demo
    10   graph_to_eps_demo
    11   lgf_demo)
    12 
    13 FOREACH(DEMO_NAME ${DEMOS})
    14   ADD_EXECUTABLE(${DEMO_NAME} ${DEMO_NAME}.cc)
    15   TARGET_LINK_LIBRARIES(${DEMO_NAME} lemon)
    16 ENDFOREACH(DEMO_NAME)