-Added install target (defaults to /usr/local), fixes #74.

main
Harry van Haaren 2014-02-23 17:26:43 +00:00
parent db212c2c23
commit abff10a08e
2 changed files with 6 additions and 2 deletions

View File

@ -3,8 +3,8 @@ cmake_minimum_required (VERSION 2.6)
project (LUPPP)
set (Tutorial_VERSION_MAJOR 1)
set (Tutorial_VERSION_MINOR 0)
set (LUPPP_VERSION_MAJOR 1)
set (LUPPP_VERSION_MINOR 0)
option(BUILD_TESTS "Build test version" OFF)

View File

@ -61,3 +61,7 @@ target_link_libraries( luppp ${SAMPLERATE_LIBRARIES} )
IF(BUILD_TESTS)
target_link_libraries(luppp gcov)
ENDIF(BUILD_TESTS)
# add the install targets
install (TARGETS luppp DESTINATION bin)