summaryrefslogtreecommitdiff
path: root/gtk2_ardour/wscript
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-01-17 21:09:37 +0100
committerRobin Gareus <robin@gareus.org>2015-01-17 21:11:27 +0100
commit964c85a061f11df2113ff59022db8bc0efc8d250 (patch)
tree61dca3822b89f721cc786acf5509f93891cb1679 /gtk2_ardour/wscript
parentd2cbb28f79860889c0e0e7800b2d37a1fe12ccfb (diff)
fix 20ea90a1 for winegcc
Diffstat (limited to 'gtk2_ardour/wscript')
-rw-r--r--gtk2_ardour/wscript3
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript
index 4e520ff5c4..57637e7a2a 100644
--- a/gtk2_ardour/wscript
+++ b/gtk2_ardour/wscript
@@ -368,7 +368,7 @@ def build(bld):
# If we require VST support we build a stub main() and the FST library
# here using winegcc, and link it to the GTK front-end library
obj = bld (features = 'cxx c cxxprogram wine')
- obj.source = ( '../vst/winmain.c')
+ obj.source = ( '../libs/fst/vstwin.c', '../vst/winmain.c' )
#
# XXX do we really need to explicitly link to all of these for the wine executable?
#
@@ -381,7 +381,6 @@ def build(bld):
'libgtk2_ardour',
'libgtkmm2ext',
'libcanvas',
- 'vstwin'
]
obj.target = 'ardour-' + str (bld.env['VERSION']) + '-vst.exe.so'
obj.includes = [ '../libs/fst', '.' ]