From e26f7c3299b854f12d54d92603d26e466b464245 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Thu, 11 Sep 2008 11:59:23 -0500 Subject: Add install support. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 47b0b10..54702c1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,3 +5,5 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/configtemplate.h ${CMAKE_CURRENT_ find_file(HAVE_INTTYPES_H inttypes.h) add_library(resample SHARED src/filterkit.c src/resample.c src/resamplesubs.c) set_target_properties(resample PROPERTIES VERSION 1.0 SOVERSION 1) +install(TARGETS resample LIBRARY DESTINATION lib) +install(FILES include/libresample.h DESTINATION include) -- cgit