summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey C. Ollie <jeff@ocjtech.us>2008-09-12 10:56:45 -0500
committerJeffrey C. Ollie <jeff@ocjtech.us>2008-09-12 10:56:45 -0500
commitf36ec3d6f7dce974ccb2e8ecc10eb0d8bb334ec3 (patch)
treeb3581c9fda79c9c8f67da5fa1e7aedf6d264bf4f
parent3a8fc1ebc6eb1359ed2b7b7de6524ffa27ad1706 (diff)
downloadlibresample-f36ec3d6f7dce974ccb2e8ecc10eb0d8bb334ec3.tar.gz
libresample-f36ec3d6f7dce974ccb2e8ecc10eb0d8bb334ec3.tar.xz
libresample-f36ec3d6f7dce974ccb2e8ecc10eb0d8bb334ec3.zip
Add a little whitespace.
-rw-r--r--CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fb6917d..3ecbfdd 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,9 +1,14 @@
cmake_minimum_required(VERSION 2.6)
project(libresample)
+
include(CheckIncludeFiles)
+
check_include_files(inttypes.h HAVE_INTTYPES_H)
+
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/configtemplate.h ${CMAKE_CURRENT_BINARY_DIR}/src/config.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_DIR})
install(FILES include/libresample.h DESTINATION ${INCLUDE_INSTALL_DIR})