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.
alpar@511
     1
INCLUDE_DIRECTORIES(
ladanyi@538
     2
  ${PROJECT_SOURCE_DIR}
ladanyi@538
     3
  ${PROJECT_BINARY_DIR}
alpar@511
     4
)
alpar@511
     5
ladanyi@538
     6
LINK_DIRECTORIES(${PROJECT_BINARY_DIR}/lemon)
alpar@511
     7
alpar@511
     8
ADD_EXECUTABLE(lgf-gen lgf-gen.cc)
alpar@511
     9
TARGET_LINK_LIBRARIES(lgf-gen lemon)
alpar@511
    10
alpar@511
    11
ADD_EXECUTABLE(dimacs-to-lgf dimacs-to-lgf.cc)
alpar@511
    12
TARGET_LINK_LIBRARIES(dimacs-to-lgf lemon)
alpar@511
    13
alpar@511
    14
ADD_EXECUTABLE(dimacs-solver dimacs-solver.cc)
alpar@511
    15
TARGET_LINK_LIBRARIES(dimacs-solver lemon)
alpar@511
    16
alpar@511
    17
INSTALL(
alpar@511
    18
  TARGETS lgf-gen dimacs-to-lgf dimacs-solver
alpar@511
    19
  RUNTIME DESTINATION bin
alpar@511
    20
  COMPONENT bin
alpar@511
    21
)
alpar@511
    22
alpar@511
    23
IF(NOT WIN32)
alpar@511
    24
  INSTALL(
ladanyi@538
    25
    PROGRAMS ${CMAKE_CURRENT_SOURCE_DIR}/lemon-0.x-to-1.x.sh
ladanyi@538
    26
    DESTINATION bin
alpar@511
    27
    COMPONENT bin)
alpar@511
    28
ENDIF(NOT WIN32)