From 2c7c706778a401d1e24cfe63c5db0ac446db9331 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 29 Feb 2012 19:11:42 +0000 Subject: [PATCH] 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 --- gtk2_ardour/wscript | 9 +++++++++ 1 file changed, 9 insertions(+) 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 = {}