summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-09-20 22:33:27 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-09-20 22:33:27 +0000
commit2e59536dd8f5d65c26fa19fc643831418efca876 (patch)
tree1f406549f99cf04efaade89fc3f7db66e831bf23 /wscript
parentd4433b9ab384196bb5b8876890863d7939339ee2 (diff)
a few coding style (indentation etc.) cleanups to LX VST code
git-svn-id: svn://localhost/ardour2/branches/3.0@10102 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'wscript')
-rw-r--r--wscript16
1 files changed, 9 insertions, 7 deletions
diff --git a/wscript b/wscript
index 14e62f94e3..7e3a68d2be 100644
--- a/wscript
+++ b/wscript
@@ -247,13 +247,15 @@ def set_compiler_flags (conf,opt):
print("However, this is tricky and not recommended for beginners.")
sys.exit (-1)
- if conf.env['build_target'] == 'x86_64' and opt.lxvst:
- print("\n\n********************************************************")
- print("* Building with 64Bit linuxVST support is experimental *")
- print("********************************************************\n\n")
- conf.env.append_value('CXXFLAGS', "-DLXVST_64BIT")
- else:
- conf.env.append_value('CXXFLAGS', "-DLXVST_32BIT")
+ if opt.lxvst:
+ if conf.env['build_target'] == 'x86_64':
+ print("\n\n********************************************************")
+ print("* Building with 64Bit linuxVST support is experimental *")
+ print("********************************************************\n\n")
+ conf.env.append_value('CXXFLAGS', "-DLXVST_64BIT")
+ else:
+ conf.env.append_value('CXXFLAGS', "-DLXVST_32BIT")
+
#
# a single way to test if we're on OS X
#