summaryrefslogtreecommitdiff
path: root/headless
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-02-24 23:32:35 +0100
committerRobin Gareus <robin@gareus.org>2014-02-24 23:57:29 +0100
commit61c199b97c3eb4bbd84d2d033594be682944a416 (patch)
tree3cf89399c1d31eec3019a7e059b6ff077793feb7 /headless
parentcc2af1cdfb9d4608471f6d1053c7a664091d05db (diff)
hardour does not yet support wine-builds
Diffstat (limited to 'headless')
-rw-r--r--headless/wscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/headless/wscript b/headless/wscript
index 3df0e09e93..d0f9b99ecd 100644
--- a/headless/wscript
+++ b/headless/wscript
@@ -30,6 +30,8 @@ def configure(conf):
def build(bld):
VERSION = "%s.%s" % (bld.env['MAJOR'], bld.env['MINOR'])
+ if bld.is_defined('WINDOWS_VST_SUPPORT') and bld.env['build_target'] != 'mingw':
+ return
# just the normal executable version of the GTK GUI
obj = bld (features = 'cxx c cxxprogram')
@@ -66,7 +68,7 @@ def build(bld):
obj.includes += ['../libs']
if bld.env['build_target'] == 'mingw':
- if bld.env['DEBUG'] == False:
+ if bld.env['DEBUG'] == False:
obj.linkflags = ['-mwindows']
if bld.is_defined('NEED_INTL'):