COIN-OR::LEMON - Graph Library

source: lemon-benchmark/tests/CMakeLists.txt @ 9:7768d68909e8

Last change on this file since 9:7768d68909e8 was 9:7768d68909e8, checked in by Alpar Juttner <alpar@…>, 12 years ago

Circulation test code added

File size: 464 bytes
RevLine 
[9]1INCLUDE_DIRECTORIES(
2  ${CMAKE_SOURCE_DIR}/tests
3  # ${CMAKE_BINARY_DIR}/src
4)
5
6LINK_DIRECTORIES(
7  # ${CMAKE_BINARY_DIR}/lemon
8)
9
10ADD_EXECUTABLE(circulation
11        circulation.cc
12)
13
14TARGET_LINK_LIBRARIES(circulation
15  lemon
16)
17
18
19## This tells cmake to install 'lemon-project' to $PREFIX/bin when
20## 'make install' is executed. You can give more targets separated
21## by whitespaces.
22
23INSTALL(
24  TARGETS
25  RUNTIME DESTINATION ${INSTALL_BIN_DIR}
26  COMPONENT bin
27)
28 
Note: See TracBrowser for help on using the repository browser.