소스 검색

Merge pull request #79950 from bruvzg/win_app

[macOS Export] Disable unpacked .app bundle export on Windows.
Yuri Sizov 2 년 전
부모
커밋
24049b6646
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      platform/macos/export/export_plugin.cpp

+ 2 - 0
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");