summaryrefslogtreecommitdiff
path: root/libs/fst/wscript
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-02-25 09:43:40 +0100
committerRobin Gareus <robin@gareus.org>2014-02-25 14:57:57 +0100
commite2adf46e0ff8174410ba5b14a1d6aed8c5c8faf1 (patch)
tree043a1a44dcf53fe88f39c1a9d41acd6619aedd03 /libs/fst/wscript
parent993ed5670175870c5b5930860e82db0efe158820 (diff)
update external VST scanner app
Diffstat (limited to 'libs/fst/wscript')
-rw-r--r--libs/fst/wscript10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/fst/wscript b/libs/fst/wscript
index 4f4de4e2ff..e15613d9c0 100644
--- a/libs/fst/wscript
+++ b/libs/fst/wscript
@@ -44,9 +44,9 @@ def build(bld):
# wine exec wrapper script
obj = bld(features = 'subst', rule= 'chmod 0755 ${TGT}')
obj.source = 'scanner.wine'
- obj.target = 'ardour-' + bld.env['VERSION'] + '-vst-scanner'
+ obj.target = 'ardour-vst-scanner'
obj.chmod = Utils.O755
- obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
+ obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3/fst')
obj.dict = {
'VERSION' : bld.env['VERSION'],
}
@@ -57,12 +57,12 @@ def build(bld):
'fst.c',
'vstwin.c',
)
- obj.target = 'ardour-' + bld.env['VERSION'] + '-vst-scanner.exe.so'
obj.linkflags = ['-mwindows', '-Wl,--export-dynamic']
+ obj.target = 'ardour-vst-scanner.exe.so'
else:
obj = bld (features = 'cxx c cxxprogram')
obj.source = ( 'scanner.cc' )
- obj.target = 'ardour-' + bld.env['VERSION'] + '-vst-scanner'
+ obj.target = 'ardour-vst-scanner'
obj.includes = [ '../pbd/', '../ardour/', '.' ]
obj.defines = [
@@ -71,5 +71,5 @@ def build(bld):
'VST_SCANNER_APP',
'PACKAGE="' + I18N_PACKAGE + '"',
]
- obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
+ obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3/fst')
obj.uselib = ['GIOMM', 'DL']