lemon/CMakeLists.txt
author Balazs Dezso <deba@inf.elte.hu>
Mon, 13 Oct 2008 14:00:11 +0200
changeset 339 91d63b8b1a4c
parent 141 96f81c791f0c
child 481 7afc121e0689
child 511 879c55700cd4
permissions -rw-r--r--
Several improvements in maximum matching algorithms
- The interface of MaxMatching is changed to be similar to the
weighted algorithms
- The internal data structure (the queue implementation and the
matching map) is changed in the MaxMatching algorithm, which
provides better runtime properties
- The Blossom iterators are changed slightly in the weighted matching
algorithms
- Several documentation improvments
- The test files are merged
     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")