demo/CMakeLists.txt
author Peter Kovacs <kpeter@inf.elte.hu>
Sun, 03 Aug 2008 13:34:57 +0200
changeset 244 c30731a37f91
child 225 c5a40fc54f1a
permissions -rw-r--r--
Many improvements in bfs.h, dfs.h and dijkstra.h
- Add run() function to Bfs and run(s,t) function to DfsVisit.
- Add debug checking to addSource() function of Dfs and DfsVisit.
- Add a few missing named parameters (according to \todo notes).
- Small fixes in the code (e.g. missing derivations).
- Many doc improvements.
- Remove \todo and \warning comments which are no longer valid.
- Remove \author commands (see ticket #39).
- Fixes in the the doc (e.g. wrong references).
- Hide the doc of most of the private and protected members.
- Use public typedefs instead of template parameters in public functions.
- Use better parameter names for some functions.
- Other small changes to make the doc more uniform.
ladanyi@141
     1
include_directories (${LEMON_SOURCE_DIR})
ladanyi@141
     2
ladanyi@141
     3
link_directories (${LEMON_BINARY_DIR}/lemon)
ladanyi@141
     4
ladanyi@141
     5
set (DEMOS
ladanyi@141
     6
  arg_parser_demo
ladanyi@141
     7
  graph_to_eps_demo
ladanyi@141
     8
  lgf_demo)
ladanyi@141
     9
ladanyi@141
    10
foreach (DEMO_NAME ${DEMOS})
ladanyi@141
    11
  add_executable (${DEMO_NAME} ${DEMO_NAME}.cc)
ladanyi@141
    12
  target_link_libraries (${DEMO_NAME} lemon)
ladanyi@141
    13
  endforeach (DEMO_NAME)