[.NET] Disable output embedding on macOS, move it to the advanced options on other platforms.

This commit is contained in:
bruvzg
2024-04-09 11:12:06 +03:00
parent a7b860250f
commit bf558adcdd
8 changed files with 42 additions and 116 deletions

View File

@ -367,11 +367,17 @@ String EditorExportPlatformWindows::get_export_option_warning(const EditorExport
}
bool EditorExportPlatformWindows::get_export_option_visibility(const EditorExportPreset *p_preset, const String &p_option) const {
if (p_preset == nullptr) {
return true;
}
// This option is not supported by "osslsigncode", used on non-Windows host.
if (!OS::get_singleton()->has_feature("windows") && p_option == "codesign/identity_type") {
return false;
}
bool advanced_options_enabled = p_preset->are_advanced_options_enabled();
// Hide codesign.
bool codesign = p_preset->get("codesign/enable");
if (!codesign && p_option != "codesign/enable" && p_option.begins_with("codesign/")) {
@ -390,6 +396,9 @@ bool EditorExportPlatformWindows::get_export_option_visibility(const EditorExpor
return false;
}
if (p_option == "dotnet/embed_build_outputs") {
return advanced_options_enabled;
}
return true;
}