summaryrefslogtreecommitdiff
path: root/libs/backends/portaudio/wscript
blob: 9c661d83b00d22216db1fc9beab3ca3b6b0e3fea (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
#!/usr/bin/env python
from waflib.extras import autowaf as autowaf
from waflib import Options
import os
import sys
import re

I18N_PACKAGE = 'portaudio-backend'

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

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

def configure(conf):
    autowaf.configure(conf)
    autowaf.check_pkg(conf, 'portaudio-2.0', uselib_store='PORTAUDIO', atleast_version='19')
    conf.check(header_name='pa_asio.h', define_name='WITH_ASIO', mandatory=False)

def build(bld):
    obj = bld(features = 'cxx cxxshlib')
    obj.source = [ 'portaudio_backend.cc',
                   'portaudio_io.cc',
                   'winmmemidi_io.cc',
                   'winmmemidi_input_device.cc',
                   'winmmemidi_output_device.cc',
                   'win_utils.cc',
                   'midi_util.cc',
                   'mmcss.cc'
                 ]
    obj.includes = ['.']
    obj.name     = 'portaudio_backend'
    obj.target   = 'portaudio_backend'
    obj.use      = 'libardour libpbd'
    obj.uselib   = ['PORTAUDIO']
    obj.install_path  = os.path.join(bld.env['LIBDIR'], 'backends')
    obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"',
                   'ARDOURBACKEND_DLL_EXPORTS',
                   'USE_MMCSS_THREAD_PRIORITIES'
                  ]