lemon/CMakeLists.txt
author Peter Kovacs <kpeter@inf.elte.hu>
Fri, 09 Jan 2009 12:54:27 +0100
changeset 451 fbd6e04acf44
parent 141 96f81c791f0c
child 458 7afc121e0689
child 491 879c55700cd4
permissions -rw-r--r--
Various doc improvements for graph adaptors (#67)

- Add notes about modifying the adapted graphs through adaptors
if it is possible.
- Add notes about the possible conversions between the Node, Arc and
Edge types of the adapted graphs and the adaptors.
- Hide the default values for template parameters (describe them
in the doc instead).
- More precise docs for template parameters.
- More precise docs for member functions.
- Add docs for important public typedefs.
- Unify the docs of the adaptors.
- Add \relates commands for the creator functions.
- Fixes and improvements the module documentation.
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")