mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
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:
parent
f41d1569d8
commit
9c167087aa
2 changed files with 20 additions and 0 deletions
19
export/wscript
Normal file
19
export/wscript
Normal 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
|
||||
1
wscript
1
wscript
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue