added make.extra

This commit is contained in:
Stefano D'Angelo 2024-12-12 11:33:52 +01:00
parent c55a1385f2
commit 98b7ab1354
7 changed files with 28 additions and 0 deletions

View File

@ -35,3 +35,7 @@ MKINC_DIR := {{=it.android_make?.mkincDir ?? (it.make?.mkincDir ?? "")}}
{{?}} {{?}}
HAS_MIDI_IN := {{=it.product.buses.filter(x => x.type == "midi" && x.direction == "input").length > 0 ? "yes" : "no"}} HAS_MIDI_IN := {{=it.product.buses.filter(x => x.type == "midi" && x.direction == "input").length > 0 ? "yes" : "no"}}
{{?(it.android_make?.extra || it.make?.extra)}}
{{=it.android_make?.extra ?? (it.make?.extra ?? "")}}
{{?}}

View File

@ -34,3 +34,7 @@ MKINC_DIR := {{=it.cmd_make?.mkincDir ?? (it.make?.mkincDir ?? "")}}
{{?}} {{?}}
HAS_MIDI_IN := {{=it.product.buses.filter(x => x.type == "midi" && x.direction == "input").length > 0 ? "yes" : "no"}} HAS_MIDI_IN := {{=it.product.buses.filter(x => x.type == "midi" && x.direction == "input").length > 0 ? "yes" : "no"}}
{{?(it.cmd_make?.extra || it.make?.extra)}}
{{=it.cmd_make?.extra ?? (it.make?.extra ?? "")}}
{{?}}

View File

@ -32,3 +32,7 @@ PLUGIN_DIR := {{=it.daisy_seed_make?.pluginDir ?? (it.make?.pluginDir ?? "")}}
{{?(it.daisy_seed_make?.mkincDir || it.make?.mkincDir)}} {{?(it.daisy_seed_make?.mkincDir || it.make?.mkincDir)}}
MKINC_DIR := {{=it.daisy_seed_make?.mkincDir ?? (it.make?.mkincDir ?? "")}} MKINC_DIR := {{=it.daisy_seed_make?.mkincDir ?? (it.make?.mkincDir ?? "")}}
{{?}} {{?}}
{{?(it.daisy_seed_make?.extra || it.make?.extra)}}
{{=it.daisy_seed_make?.extra ?? (it.make?.extra ?? "")}}
{{?}}

View File

@ -32,3 +32,7 @@ PLUGIN_DIR := {{=it.ios_make?.pluginDir ?? (it.make?.pluginDir ?? "")}}
{{?(it.ios_make?.mkincDir || it.make?.mkincDir)}} {{?(it.ios_make?.mkincDir || it.make?.mkincDir)}}
MKINC_DIR := {{=it.ios_make?.mkincDir ?? (it.make?.mkincDir ?? "")}} MKINC_DIR := {{=it.ios_make?.mkincDir ?? (it.make?.mkincDir ?? "")}}
{{?}} {{?}}
{{?(it.ios_make?.extra || it.make?.extra)}}
{{=it.ios_make?.extra ?? (it.make?.extra ?? "")}}
{{?}}

View File

@ -32,3 +32,7 @@ PLUGIN_DIR := {{=it.lv2_make?.pluginDir ?? (it.make?.pluginDir ?? "")}}
{{?(it.lv2_make?.mkincDir || it.make?.mkincDir)}} {{?(it.lv2_make?.mkincDir || it.make?.mkincDir)}}
MKINC_DIR := {{=it.lv2_make?.mkincDir ?? (it.make?.mkincDir ?? "")}} MKINC_DIR := {{=it.lv2_make?.mkincDir ?? (it.make?.mkincDir ?? "")}}
{{?}} {{?}}
{{?(it.lv2_make?.extra || it.make?.extra)}}
{{=it.lv2_make?.extra ?? (it.make?.extra ?? "")}}
{{?}}

View File

@ -34,3 +34,7 @@ MKINC_DIR := {{=it.vst3_make?.mkincDir ?? (it.make?.mkincDir ?? "")}}
{{?}} {{?}}
HAS_UI := {{=it.product.ui ? "yes" : "no"}} HAS_UI := {{=it.product.ui ? "yes" : "no"}}
{{?(it.vst3_make?.extra || it.make?.extra)}}
{{=it.vst3_make?.extra ?? (it.make?.extra ?? "")}}
{{?}}

View File

@ -34,3 +34,7 @@ MKINC_DIR := {{=it.web_make?.mkincDir ?? (it.make?.mkincDir ?? "")}}
{{?}} {{?}}
HAS_MIDI_IN := {{=it.product.buses.filter(x => x.type == "midi" && x.direction == "input").length > 0 ? "yes" : "no"}} HAS_MIDI_IN := {{=it.product.buses.filter(x => x.type == "midi" && x.direction == "input").length > 0 ? "yes" : "no"}}
{{?(it.web_make?.extra || it.make?.extra)}}
{{=it.web_make?.extra ?? (it.make?.extra ?? "")}}
{{?}}