mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
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:
parent
d4433b9ab3
commit
2e59536dd8
5 changed files with 197 additions and 226 deletions
16
wscript
16
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
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue