2006-06-21 20:22:16 -04:00
|
|
|
# -*- 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')
|
|
|
|
|
2006-10-09 13:56:13 -04:00
|
|
|
if fst['VST']:
|
|
|
|
Default([hackSDK,a,b,c,d])
|
|
|
|
|
2006-10-09 15:22:35 -04:00
|
|
|
env.Alias('tarball', env.Distribute (env['DISTTREE'],
|
2006-10-09 15:53:04 -04:00
|
|
|
fst_src + ['SConscript',
|
|
|
|
'fst.h',
|
|
|
|
'jackvst.h'
|
|
|
|
] ))
|
2006-06-21 20:22:16 -04:00
|
|
|
|