summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey C. Ollie <jeff@ocjtech.us>2008-09-11 12:21:25 -0500
committerJeffrey C. Ollie <jeff@ocjtech.us>2008-09-11 12:21:25 -0500
commit76c5e34341553861db7f001a66707f8476b31dfd (patch)
tree3ef7e33238494ac0276e1274d71848583be0c552
parente26f7c3299b854f12d54d92603d26e466b464245 (diff)
downloadlibresample-76c5e34341553861db7f001a66707f8476b31dfd.tar.gz
libresample-76c5e34341553861db7f001a66707f8476b31dfd.tar.xz
libresample-76c5e34341553861db7f001a66707f8476b31dfd.zip
Fix installation paths.
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 54702c1..0c21a6b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,5 +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)
+install(TARGETS resample LIBRARY DESTINATION ${LIB_INSTALL_DIR})
+install(FILES include/libresample.h DESTINATION ${INCLUDE_INSTALL_DIR})