COIN-OR::LEMON - Graph Library

source: lemon-1.2/demo/CMakeLists.txt @ 185:33e45a9b868c

Last change on this file since 185:33e45a9b868c was 141:96f81c791f0c, checked in by Akos Ladanyi <ladanyi@…>, 16 years ago

CMake based build system

File size: 298 bytes
Line 
1include_directories (${LEMON_SOURCE_DIR})
2
3link_directories (${LEMON_BINARY_DIR}/lemon)
4
5set (DEMOS
6  arg_parser_demo
7  graph_to_eps_demo
8  lgf_demo)
9
10foreach (DEMO_NAME ${DEMOS})
11  add_executable (${DEMO_NAME} ${DEMO_NAME}.cc)
12  target_link_libraries (${DEMO_NAME} lemon)
13  endforeach (DEMO_NAME)
Note: See TracBrowser for help on using the repository browser.