diff -r 3c30bd0f9ccc -r 7768d68909e8 tests/CMakeLists.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/CMakeLists.txt Sun Dec 11 06:55:47 2011 +0100 @@ -0,0 +1,28 @@ +INCLUDE_DIRECTORIES( + ${CMAKE_SOURCE_DIR}/tests + # ${CMAKE_BINARY_DIR}/src +) + +LINK_DIRECTORIES( + # ${CMAKE_BINARY_DIR}/lemon +) + +ADD_EXECUTABLE(circulation + circulation.cc +) + +TARGET_LINK_LIBRARIES(circulation + lemon +) + + +## This tells cmake to install 'lemon-project' to $PREFIX/bin when +## 'make install' is executed. You can give more targets separated +## by whitespaces. + +INSTALL( + TARGETS + RUNTIME DESTINATION ${INSTALL_BIN_DIR} + COMPONENT bin +) +