From: Shane Burrell Date: Thu, 12 Feb 2009 00:42:01 +0000 (+0000) Subject: Added CMAKE libresample X-Git-Tag: v1.0.3~230 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f7f9b0978a895eccd4cebc74b35b1ff5fd58df6;p=thirdparty%2Ffreeswitch.git Added CMAKE libresample git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11903 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/libs/libresample/CMakeLists.txt b/libs/libresample/CMakeLists.txt new file mode 100644 index 0000000000..0ef327b9c3 --- /dev/null +++ b/libs/libresample/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 2.6) + +INCLUDE_DIRECTORIES(include/) + +SET ( resample_SRCS src/resample.c src/filterkit.c src/resamplesubs.c include/libresample.h) +ADD_LIBRARY(resample STATIC ${resample_SRCS}) + + + + + + +