]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Added CMAKE libresample
authorShane Burrell <shaneb@metrostat.net>
Thu, 12 Feb 2009 00:42:01 +0000 (00:42 +0000)
committerShane Burrell <shaneb@metrostat.net>
Thu, 12 Feb 2009 00:42:01 +0000 (00:42 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11903 d0543943-73ff-0310-b7d9-9358b9ac24b2

libs/libresample/CMakeLists.txt [new file with mode: 0644]

diff --git a/libs/libresample/CMakeLists.txt b/libs/libresample/CMakeLists.txt
new file mode 100644 (file)
index 0000000..0ef327b
--- /dev/null
@@ -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})
+
+
+
+
+
+
+