changeset 145 | 95d905b6e33d |
child 225 | c5a40fc54f1a |
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/demo/CMakeLists.txt Tue Apr 22 17:52:01 2008 +0100 1.3 @@ -0,0 +1,13 @@ 1.4 +include_directories (${LEMON_SOURCE_DIR}) 1.5 + 1.6 +link_directories (${LEMON_BINARY_DIR}/lemon) 1.7 + 1.8 +set (DEMOS 1.9 + arg_parser_demo 1.10 + graph_to_eps_demo 1.11 + lgf_demo) 1.12 + 1.13 +foreach (DEMO_NAME ${DEMOS}) 1.14 + add_executable (${DEMO_NAME} ${DEMO_NAME}.cc) 1.15 + target_link_libraries (${DEMO_NAME} lemon) 1.16 + endforeach (DEMO_NAME)