lemon/CMakeLists.txt
author Balazs Dezso <deba@inf.elte.hu>
Tue, 02 Dec 2008 22:48:28 +0100
changeset 459 ed54c0d13df0
parent 458 7afc121e0689
child 473 17d918051964
permissions -rw-r--r--
Thorough redesign of the LP/MIP interface (#44)

- Redesigned class structure
- Redesigned iterators
- Some functions in the basic interface redesigned
- More complete setting functions
- Ray retrieving functions
- Lot of improvements
- Cplex common env
- CLP macro definition to config.h.in
- Update lp.h to also use soplex and clp
- Remove default_solver_name
- New solverName() function in solvers
- Handle exceptions for MipCplex test
- Rename tolerance parameter to epsilon
- Rename MapIt to CoeffIt
- Lot of documentation improvements
- Various bugfixes
alpar@225
     1
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR})
alpar@225
     2
alpar@225
     3
ADD_LIBRARY(lemon
alpar@225
     4
  arg_parser.cc
alpar@225
     5
  base.cc
alpar@225
     6
  color.cc
alpar@225
     7
  random.cc)
alpar@225
     8
alpar@225
     9
INSTALL(
alpar@225
    10
  TARGETS lemon
alpar@225
    11
  ARCHIVE DESTINATION lib
alpar@225
    12
  COMPONENT library)
alpar@225
    13
alpar@225
    14
INSTALL(
alpar@225
    15
  DIRECTORY . bits concepts
alpar@225
    16
  DESTINATION include/lemon
alpar@225
    17
  COMPONENT headers
alpar@225
    18
  FILES_MATCHING PATTERN "*.h")