Location: LEMON/LEMON-main/demo/CMakeLists.txt

Load file history
gravatar
kpeter (Peter Kovacs)
Improvements in groups.dox (#188) - Unify the notations used for formulas. - Add 'namespace lemon {...}' to simplify the references. - Improved doc for algorithm groups. - Extend the doc of the "shortest path" and "minimum cost flow" modules.
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR})
LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/lemon)
SET(DEMOS
arg_parser_demo
graph_to_eps_demo
lgf_demo)
FOREACH(DEMO_NAME ${DEMOS})
ADD_EXECUTABLE(${DEMO_NAME} ${DEMO_NAME}.cc)
TARGET_LINK_LIBRARIES(${DEMO_NAME} lemon)
ENDFOREACH(DEMO_NAME)