mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
copy sanitycheck from 2.0-ongoing
git-svn-id: svn://localhost/ardour2/branches/3.0@8624 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
d46766aeff
commit
85b4ff8669
4 changed files with 825 additions and 0 deletions
24
tools/sanity_check/wscript
Normal file
24
tools/sanity_check/wscript
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#!/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')
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue