13
0
livetrax/tools/sanity_check/wscript
David Robillard 4769db412d Fix Python whitespace (follow PEP8 guidelines, reformatted by Python Reindent)
git-svn-id: svn://localhost/ardour2/branches/3.0@9409 d708f5d6-7413-0410-9779-e7cbd77b26cf
2011-04-22 22:15:21 +00:00

24 lines
528 B
Python

#!/usr/bin/env python
import autowaf
import Options
import os
# Mandatory variables
srcdir = '.'
blddir = 'build'
def set_options(opt):
autowaf.set_options(opt)
def configure(conf):
autowaf.configure (conf)
conf.check_tool('compiler_cxx')
def build(bld):
obj = bld.new_task_gen(features = 'cxx cprogram')
obj.includes = [ '.' ]
obj.source = [ 'main.cpp', 'systemtest.cpp' ]
obj.target = 'sanityCheck'
obj.name = 'sanityCheck'
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')