diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-08-02 21:37:01 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-08-02 21:37:01 +0200 |
commit | 24049b664634d915f6ec6ffd7b55d2e4a537f810 (patch) | |
tree | c5e68264062ebcdb0fca7bb811d68f69214b600a /platform/macos/export/export_plugin.cpp | |
parent | 1886dee28fc7560def60f92d1a94478bf4a701c0 (diff) | |
parent | 56bd7adae4dc8a55284b060bc3e561c6c4226893 (diff) | |
download | redot-engine-24049b664634d915f6ec6ffd7b55d2e4a537f810.tar.gz |
Merge pull request #79950 from bruvzg/win_app
[macOS Export] Disable unpacked .app bundle export on Windows.
Diffstat (limited to 'platform/macos/export/export_plugin.cpp')
-rw-r--r-- | platform/macos/export/export_plugin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/macos/export/export_plugin.cpp b/platform/macos/export/export_plugin.cpp index 81f9707f6b..1afcedc576 100644 --- a/platform/macos/export/export_plugin.cpp +++ b/platform/macos/export/export_plugin.cpp @@ -342,7 +342,9 @@ List<String> EditorExportPlatformMacOS::get_binary_extensions(const Ref<EditorEx list.push_back("dmg"); #endif list.push_back("zip"); +#ifndef WINDOWS_ENABLED list.push_back("app"); +#endif } else if (dist_type == 1) { #ifdef MACOS_ENABLED list.push_back("dmg"); |