lemon/CMakeLists.txt
author Balazs Dezso <deba@inf.elte.hu>
Sun, 30 Nov 2008 19:00:30 +0100
changeset 415 4b6112235fad
parent 141 96f81c791f0c
child 458 7afc121e0689
child 491 879c55700cd4
permissions -rw-r--r--
Improvements in graph adaptors (#67)

Remove DigraphAdaptor and GraphAdaptor
Remove docs of base classes
Move the member documentations to real adaptors
Minor improvements in documentation
     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")