tools/CMakeLists.txt
author Peter Kovacs <kpeter@inf.elte.hu>
Sat, 25 Apr 2009 02:12:41 +0200
changeset 615 7c1324b35d89
parent 511 c458e02723b1
child 681 9c7639f3a741
permissions -rw-r--r--
Modify the interface of Suurballe (#266, #181)

- Move the parameters s and t from the constructor to the run()
function. It makes the interface capable for multiple run(s,t,k)
calls (possible improvement in the future) and it is more similar
to Dijkstra.
- Simliarly init() and findFlow(k) were replaced by init(s) and
findFlow(t,k). The separation of parameters s and t is for the
future plans of supporting multiple targets with one source node.
For more information see #181.
- LEMON_ASSERT for the Length type (check if it is integer).
- Doc improvements.
- Rearrange query functions.
- Extend test file.
     1 INCLUDE_DIRECTORIES(
     2   ${PROJECT_SOURCE_DIR}
     3   ${PROJECT_BINARY_DIR}
     4 )
     5 
     6 LINK_DIRECTORIES(${PROJECT_BINARY_DIR}/lemon)
     7 
     8 ADD_EXECUTABLE(lgf-gen lgf-gen.cc)
     9 TARGET_LINK_LIBRARIES(lgf-gen lemon)
    10 
    11 ADD_EXECUTABLE(dimacs-to-lgf dimacs-to-lgf.cc)
    12 TARGET_LINK_LIBRARIES(dimacs-to-lgf lemon)
    13 
    14 ADD_EXECUTABLE(dimacs-solver dimacs-solver.cc)
    15 TARGET_LINK_LIBRARIES(dimacs-solver lemon)
    16 
    17 INSTALL(
    18   TARGETS lgf-gen dimacs-to-lgf dimacs-solver
    19   RUNTIME DESTINATION bin
    20   COMPONENT bin
    21 )
    22 
    23 IF(NOT WIN32)
    24   INSTALL(
    25     PROGRAMS ${CMAKE_CURRENT_SOURCE_DIR}/lemon-0.x-to-1.x.sh
    26     DESTINATION bin
    27     COMPONENT bin)
    28 ENDIF(NOT WIN32)