summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-02-29 19:11:42 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-02-29 19:11:42 +0000
commit2c7c706778a401d1e24cfe63c5db0ac446db9331 (patch)
tree6c37c88c2075caf954d6089277dd18dfedb7fefd /gtk2_ardour
parentf040987f25afcd8562e02a018b3c9ef811d8fee1 (diff)
run subst on, and install, the ardourVST startup script if doing a windows VST support build
git-svn-id: svn://localhost/ardour2/branches/3.0@11555 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/wscript9
1 files changed, 9 insertions, 0 deletions
diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript
index eba14af411..9873fb328e 100644
--- a/gtk2_ardour/wscript
+++ b/gtk2_ardour/wscript
@@ -467,6 +467,15 @@ def build(bld):
obj.install_path = bld.env['BINDIR']
set_subst_dict(obj, wrapper_subst_dict)
+ if bld.is_defined('WINDOWS_VST_SUPPORT'):
+ obj = bld(features = 'subst')
+ obj.source = '../vst/ardourvst.in'
+ obj.target = 'ardourvst3'
+ obj.chmod = Utils.O755
+ obj.dict = wrapper_subst_dict
+ obj.install_path = bld.env['BINDIR']
+ set_subst_dict(obj, wrapper_subst_dict)
+
# Font configuration
dark_rc_subst_dict = {}