Fix missing View menu items (toggle EQ, toggle Sends) in 32C
This commit is contained in:
@@ -838,6 +838,9 @@ def build(bld):
|
||||
if bld.is_defined('MIXBUS'):
|
||||
menus_argv += [ '-DMIXBUS' ]
|
||||
|
||||
if bld.is_defined('MIXBUS32C'):
|
||||
menus_argv += [ '-DMIXBUS32C' ]
|
||||
|
||||
if bld.is_defined('PTFORMAT'):
|
||||
menus_argv += [ '-DPTFORMAT' ]
|
||||
|
||||
@@ -849,7 +852,7 @@ def build(bld):
|
||||
obj.command_is_external = True
|
||||
obj.no_inputs = True
|
||||
obj.argv = menus_argv
|
||||
obj.dep_vars = ['PTFORMAT', 'MIXBUS', 'WINDOWS']
|
||||
obj.dep_vars = ['PTFORMAT', 'MIXBUS', 'MIXBUS32C', 'WINDOWS']
|
||||
obj.stdin = program + '.menus.in'
|
||||
obj.stdout = program + '.menus'
|
||||
bld.install_files (bld.env['CONFDIR'], program + '.menus')
|
||||
|
||||
Reference in New Issue
Block a user