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
This commit is contained in:
Paul Davis 2011-09-20 22:33:27 +00:00
parent d4433b9ab3
commit 2e59536dd8
5 changed files with 197 additions and 226 deletions

16
wscript
View file

@ -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
#