lemon-project-template-glpk

view src/CMakeLists.txt @ 8:dda9b6665fde

Improved install locations
author Alpar Juttner <alpar@cs.elte.hu>
date Tue, 22 Mar 2011 20:26:58 +0100
parents c941f748eaa8
children 4fc6ad2fb8a6
line source
1 INCLUDE_DIRECTORIES(
2 ${CMAKE_SOURCE_DIR}
3 ${CMAKE_SOURCE_DIR}/src
4 ${CMAKE_BINARY_DIR}/src
5 )
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.
13 ADD_EXECUTABLE(lemon-project
14 main.cc
15 )
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.
21 TARGET_LINK_LIBRARIES(lemon-project
22 ${LEMON_LIBRARIES}
23 )
25 INSTALL(
26 TARGETS lemon-project
27 RUNTIME DESTINATION ${INSTALL_BIN_DIR}
28 COMPONENT bin
29 )