summaryrefslogtreecommitdiff
path: root/libs/fst/SConscript
blob: 2cbfb94a9f68372b5b59e705d2a16f9dbd0862b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- 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')

if fst['VST']:
    Default([hackSDK,a,b,c,d])
    
env.Alias('tarball', env.Distribute (env['DISTTREE'],
                                     fst_src + ['SConscript',
                                                'fst.h',
                                                'jackvst.h'
                                                ] ))