tools/CMakeLists.txt
author Peter Kovacs <kpeter@inf.elte.hu>
Fri, 03 Apr 2009 18:59:15 +0200
changeset 600 6ac5d9ae1d3d
child 538 ba659d676331
permissions -rw-r--r--
Support real types + numerical stability fix in NS (#254)

- Real types are supported by appropriate inicialization.
- A feature of the XTI spanning tree structure is removed to ensure
numerical stability (could cause problems using integer types).
The node potentials are updated always on the lower subtree,
in order to prevent overflow problems.
The former method isn't notably faster during to our tests.
alpar@511
     1
INCLUDE_DIRECTORIES(
alpar@511
     2
  ${CMAKE_SOURCE_DIR}
alpar@511
     3
  ${CMAKE_BINARY_DIR}
alpar@511
     4
)
alpar@511
     5
alpar@511
     6
LINK_DIRECTORIES(${CMAKE_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(
alpar@511
    25
    FILES ${CMAKE_CURRENT_SOURCE_DIR}/lemon-0.x-to-1.x.sh
alpar@511
    26
    RUNTIME DESTINATION bin
alpar@511
    27
    COMPONENT bin)
alpar@511
    28
ENDIF(NOT WIN32)