demo/CMakeLists.txt
author Peter Kovacs <kpeter@inf.elte.hu>
Sun, 29 Mar 2009 23:08:20 +0200
changeset 550 c5fd2d996909
parent 473 17d918051964
child 538 ba659d676331
permissions -rw-r--r--
Various doc improvements (#248)
- Rename all the ugly template parameters (too long and/or starting
with an underscore).
- Rename function parameters starting with an underscore.
- Extend the doc for many classes.
- Use LaTeX-style O(...) expressions only for the complicated ones.
- A lot of small unification changes.
- Small fixes.
- Some other improvements.
     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)