repo.or.cz
/
ardour2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove more unneeded header includes
[ardour2.git]
/
export
/
wscript
blob
2ab87c4cd97348a2d28ee595f556ca60620f4113
1
#!/usr/bin/python
2
3
import
os
4
import
glob
5
6
srcdir
=
'.'
7
blddir
=
'build'
8
9
def
configure
(
conf
):
10
pass
11
12
def
build
(
bld
):
13
presets
=
glob
.
glob
(
os
.
path
.
join
(
bld
.
get_curdir
(),
'*.preset'
))
14
formats
=
glob
.
glob
(
os
.
path
.
join
(
bld
.
get_curdir
(),
'*.format'
))
15
bld
.
install_files
(
os
.
path
.
join
(
bld
.
env
[
'DATADIR'
],
'ardour3'
,
'export'
),
16
presets
+
formats
)
17
18
def
set_options
(
opt
):
19
pass