COIN-OR::LEMON - Graph Library

source: lemon-project-template-glpk/src/CMakeLists.txt @ 8:dda9b6665fde

Last change on this file since 8:dda9b6665fde was 8:dda9b6665fde, checked in by Alpar Juttner <alpar@…>, 13 years ago

Improved install locations

File size: 775 bytes
Line 
1INCLUDE_DIRECTORIES(
2  ${CMAKE_SOURCE_DIR}
3  ${CMAKE_SOURCE_DIR}/src
4  ${CMAKE_BINARY_DIR}/src
5)
6
7## Here we define an executable target. Its name is 'lemon-project' and
8## is compiled from 'main.cc'. You can add more source files separated
9## with whitespaces (including newlines). If you want to build more
10## executables, simple repeat (and edit) the following ADD_EXECUTABLE and
11## TARGET_LINK_LIBRARIES statements.
12
13ADD_EXECUTABLE(lemon-project
14        main.cc
15)
16
17## This tells cmake to install 'lemon-project' to $PREFIX/bin when
18## 'make install' is executed. You can give more targets separated
19## by whitespaces.
20
21TARGET_LINK_LIBRARIES(lemon-project
22  ${LEMON_LIBRARIES}
23)
24
25INSTALL(
26  TARGETS lemon-project
27  RUNTIME DESTINATION ${INSTALL_BIN_DIR}
28  COMPONENT bin
29)
Note: See TracBrowser for help on using the repository browser.