mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-26 06:58:22 +01:00
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
1 changed files with 4 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue