demo/CMakeLists.txt
author Peter Kovacs <kpeter@inf.elte.hu>
Wed, 25 Mar 2009 15:58:44 +0100
changeset 605 5232721b3f14
parent 473 17d918051964
child 549 ba659d676331
permissions -rw-r--r--
Rework the interface of NetworkSimplex (#234)

The parameters of the problem can be set with separate functions
instead of different constructors.
     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)