openAV-Luppp/wscript
Harry van Haaren a29b8c720c -Initial commit
2013-04-20 11:37:36 +01:00

26 lines
730 B
Python

#! /usr/bin/env python
VERSION='5.0.0'
APPNAME='Luppp'
top = '.'
out = '.build'
def options(opt):
opt.load('compiler_cxx')
def configure(conf):
conf.load('compiler_cxx')
conf.env.append_value('CXXFLAGS', ['-g', '-Wall']) #'-O2'
conf.check_cfg(package='jack',at_least_version='0.118',args='--cflags --libs',uselib_store='JACK')
#conf.check_cfg(package='lilv-0',at_least_version='1.0',args='--cflags --libs',uselib_store='LILV')
#conf.check_cfg(package='sndfile',at_least_version='1.0',args='--cflags --libs',uselib_store='SNDFILE')
def build(bld):
sources = ['src/main.cxx',
'src/jack.cxx',
'src/eventhandlerdsp.cxx']
bld.program(source = sources, target='luppp5', use='JACK')