summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey C. Ollie <jeff@ocjtech.us>2008-09-11 11:59:23 -0500
committerJeffrey C. Ollie <jeff@ocjtech.us>2008-09-11 11:59:23 -0500
commite26f7c3299b854f12d54d92603d26e466b464245 (patch)
treea6b0c5c5e733b94f3643661747deaa577fa306a3
parentdced39d7951c16ca7bc83d7964b17ea203293990 (diff)
downloadlibresample-e26f7c3299b854f12d54d92603d26e466b464245.tar.gz
libresample-e26f7c3299b854f12d54d92603d26e466b464245.tar.xz
libresample-e26f7c3299b854f12d54d92603d26e466b464245.zip
Add install support.
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
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)