summaryrefslogtreecommitdiff
path: root/libs/panners/1in2out/wscript
blob: 2c1d9f129393e9d868ff46070b576140d6e971d3 (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
#!/usr/bin/env python
from waflib.extras import autowaf as autowaf
import os

# Mandatory variables
top = '.'
out = 'build'

def options(opt):
    autowaf.set_options(opt)

def configure(conf):
    autowaf.configure(conf)

def build(bld):
    obj = bld(features = 'cxx cxxshlib')
    obj.source = [ 'panner_1in2out.cc' ]
    obj.export_includes = ['.']
    obj.defines      = [ 'PACKAGE="libardour_pan1in2out"' ]
    obj.defines     += [ 'ARDOURPANNER_DLL_EXPORTS' ]
    obj.includes     = ['.']
    obj.name         = 'libardour_pan1in2out'
    obj.target       = 'pan1in2out'
    obj.use          = 'libardour libardour_cp libpbd'
    obj.install_path = os.path.join(bld.env['LIBDIR'], 'panners')

def shutdown():
    autowaf.shutdown()