add a mixbus compile define
allow to minimize branch changes downstream and work closer with upstream. (so far upstream #ifdef MIXBUS were hardcoded to #if 1 downstream)
This commit is contained in:
parent
d0cdf9660a
commit
e5136d0375
4
wscript
4
wscript
@ -592,6 +592,10 @@ int main() { return 0; }''',
|
||||
if opt.nls:
|
||||
compiler_flags.append('-DENABLE_NLS')
|
||||
|
||||
# use sparingly, prefer runtime profile
|
||||
if Options.options.program_name.lower() == "mixbus":
|
||||
compiler_flags.append ('-DMIXBUS')
|
||||
|
||||
compiler_flags.append ('-DPROGRAM_NAME="' + Options.options.program_name + '"')
|
||||
compiler_flags.append ('-DPROGRAM_VERSION="' + PROGRAM_VERSION + '"')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user