add build stuff for export formats/presets

git-svn-id: svn://localhost/ardour2/branches/3.0@9137 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-03-13 16:23:35 +00:00
parent f41d1569d8
commit 9c167087aa
2 changed files with 20 additions and 0 deletions

19
export/wscript Normal file
View File

@ -0,0 +1,19 @@
#!/usr/bin/python
import os
import glob
srcdir = '.'
blddir = 'build'
def configure(conf):
pass
def build(bld):
presets = glob.glob (os.path.join(bld.get_curdir(), '*.preset'))
formats = glob.glob (os.path.join(bld.get_curdir(), '*.format'))
bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'export'),
presets + formats)
def set_options(opt):
pass

View File

@ -35,6 +35,7 @@ children = [
'libs/gnomecanvas',
'gtk2_ardour',
'templates',
'export',
# this needs to be conditional at some point, since
# we will not build it or use it on OS X
'tools/sanity_check'