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
     1 INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR})
     2 
     3 ADD_LIBRARY(lemon
     4   arg_parser.cc
     5   base.cc
     6   color.cc
     7   random.cc)
     8 
     9 INSTALL(
    10   TARGETS lemon
    11   ARCHIVE DESTINATION lib
    12   COMPONENT library)
    13 
    14 INSTALL(
    15   DIRECTORY . bits concepts
    16   DESTINATION include/lemon
    17   COMPONENT headers
    18   FILES_MATCHING PATTERN "*.h")