summaryrefslogtreecommitdiff
path: root/libs/soundtouch/SConscript
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2005-05-18 16:08:37 +0000
committerTaybin Rutkin <taybin@taybin.com>2005-05-18 16:08:37 +0000
commitfa7c141813844ce5b4c93ca126ed84ab568a2892 (patch)
treeaafbf59e70135651039fffce7a2975099efcd1d6 /libs/soundtouch/SConscript
parent90dff30cf4b3dd1d9e752754395cdaf720eeae5f (diff)
Updated to soundtouch-1.3 (plus modifications)
git-svn-id: svn://localhost/trunk/ardour2@13 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/soundtouch/SConscript')
-rw-r--r--libs/soundtouch/SConscript23
1 files changed, 23 insertions, 0 deletions
diff --git a/libs/soundtouch/SConscript b/libs/soundtouch/SConscript
new file mode 100644
index 0000000000..12ce0b385c
--- /dev/null
+++ b/libs/soundtouch/SConscript
@@ -0,0 +1,23 @@
+# -*- python -*-
+
+import glob
+
+soundtouch_files = Split("""
+AAFilter.cpp
+FIFOSampleBuffer.cpp
+FIRFilter.cpp
+RateTransposer.cpp
+SoundTouch.cpp
+TDStretch.cpp
+mmx_gcc.cpp
+cpu_detect_x86_gcc.cpp
+""")
+
+Import('env')
+st = env.Copy()
+st.Append(CCFLAGS="-DHAVE_CONFIG_H -D_REENTRANT -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE")
+libst = st.StaticLibrary('soundtouch', soundtouch_files)
+Default(libst)
+
+env.Alias('tarball', env.Distribute (env['DISTTREE'],
+ [ 'SConscript'] + soundtouch_files + glob.glob('*.h')))