mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Merging from trunk
git-svn-id: svn://localhost/ardour2/branches/undo@638 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
fd742b30fa
commit
7ff370e798
263 changed files with 20008 additions and 18770 deletions
27
libs/fst/SConscript
Normal file
27
libs/fst/SConscript
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# -*- python -*-
|
||||
|
||||
import os
|
||||
import os.path
|
||||
import glob
|
||||
|
||||
fst_src = glob.glob('*.c')
|
||||
|
||||
Import('env install_prefix')
|
||||
fst = env.Copy(CC="winegcc")
|
||||
fst.Append (CPPPATH=".")
|
||||
|
||||
hackSDK = fst.Command('vst/aeffectx.h', 'vstsdk2.3/source/common/aeffectx.h', [
|
||||
Delete ('${TARGET.dir}'),
|
||||
Copy ('${TARGET.dir}', '${SOURCE.dir}'),
|
||||
"sed -i '/struct VstFileType\|struct VstFileSelect/,/};/d' $TARGET"
|
||||
])
|
||||
|
||||
a = fst.Object ('fst', 'fst.c')
|
||||
b = fst.Object ('fstinfofile', 'fstinfofile.c')
|
||||
c = fst.Object ('vstwin', 'vstwin.c')
|
||||
d = fst.Object ('vsti', 'vsti.c')
|
||||
|
||||
Default([hackSDK,a,b,c,d])
|
||||
|
||||
env.Alias('tarball', env.Distribute (env['DISTTREE'], fst_src + ['SConscript'] ))
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue