summaryrefslogtreecommitdiff
path: root/libs/fst/SConscript
blob: 1fd8d2758dc5ff4ddb79c3f63f24464c85ce44f9 (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
33
34
35
36
37
38
39
# -*- python -*-

import os
import os.path
import sys
import glob

fst_src = glob.glob('*.c')

Import('env install_prefix')
fst = env.Copy(CC="winegcc")
fst.Append (CPPPATH=".")

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']:
    if os.access ('vst_sdk2_3.zip', os.F_OK):
        fst.Execute ("unzip -o vst_sdk2_3.zip vstsdk2.3.zip")
    if os.access ('vstsdk2.3.zip', os.F_OK):
        fst.Execute ("unzip -o vstsdk2.3.zip")
    else:
        print 'Did not find vst_sdk2_3.zip or vstsdk2.3.zip in libs/fst.  Make sure the correct file is in the correct location and correctly named'
        print 'Please see http://ardour.org/building_vst_support for more information'
        sys.exit (1)    
    fst.Execute (Delete ("vst"))
    fst.Execute (Copy ("vst", "vstsdk2.3/source/common"))
    fst.Execute ("sed -i '/struct VstFileType\|struct VstFileSelect/,/};/d' vst/aeffectx.h")
    Default([a,b,c,d])
    
    
env.Alias('tarball', env.Distribute (env['DISTTREE'],
                                     fst_src + ['SConscript',
                                                'fst.h',
                                                'jackvst.h'
                                                ] ))