summaryrefslogtreecommitdiff
path: root/libs/fst/SConscript
blob: 2e78e8d3c8469a19ec6bc229c7ec1f2da92949f8 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- 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=".")

if fst['VST']:
    vst_dir     = Dir ('libs/vst')
    vst_sdk_dir = Dir ('vstsdk2.3')
    #
    # if it exists, try to use the Steinberg zip package
    #
    vst_sdk_zip = File ('vstsdk2.3.zip')

    if os.access (vst_sdk_zip.abspath, os.F_OK):
        print 'VST package discovered.'
    elif os.access ('vst_sdk2_3.zip', os.F_OK):
        #
        # redefine vst_sdk_zip as a build target that relies on unpacking the Steinberg "meta" zip package
        #
        vst_meta_zip = fst.Command (vst_sdk_zip, 'vst_sdk2_3.zip',  "unzip -o -d ${TARGET.dir} $SOURCES vstsdk2.3.zip" )
        print 'VST meta-package discovered.'
    else:
        if os.access ('vstsdk2.3.zip', os.F_OK) != 1:
            print 'Did not find vst_sdk2_3.zip or vstsdk2.3.zip in libs/fst.'
            print '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)    

    vst_headers = fst.Command ([ 'vst/aeffectx.h', 'vst/AEffect.h' ], vst_sdk_zip, [
        "unzip -qq -d ${SOURCE.dir} -o $SOURCE",
        Delete ('$TARGET.dir'),
        Copy ('${TARGET.dir}', 'libs/fst/vstsdk2.3/source/common'),
        "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([vst_headers,a,b,c,d])
    
env.Alias('tarball', env.Distribute (env['DISTTREE'],
                                     fst_src + ['SConscript',
                                                'fst.h',
                                                'jackvst.h'
                                                ] ))