SCsub 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. #!/usr/bin/env python
  2. Import("env")
  3. import os
  4. import shutil
  5. import subprocess
  6. import platform_macos_builders
  7. from platform_methods import get_build_version, lipo
  8. def generate_bundle(target, source, env):
  9. bin_dir = Dir("#bin").abspath
  10. if env.editor_build:
  11. # Editor bundle.
  12. prefix = "godot." + env["platform"] + "." + env["target"]
  13. if env.dev_build:
  14. prefix += ".dev"
  15. if env["precision"] == "double":
  16. prefix += ".double"
  17. # Lipo editor executable.
  18. target_bin = lipo(bin_dir + "/" + prefix, env.extra_suffix + env.module_version_string)
  19. # Assemble .app bundle and update version info.
  20. app_dir = Dir("#bin/" + (prefix + env.extra_suffix + env.module_version_string).replace(".", "_") + ".app").abspath
  21. templ = Dir("#misc/dist/macos_tools.app").abspath
  22. if os.path.exists(app_dir):
  23. shutil.rmtree(app_dir)
  24. shutil.copytree(templ, app_dir, ignore=shutil.ignore_patterns("Contents/Info.plist"))
  25. if not os.path.isdir(app_dir + "/Contents/MacOS"):
  26. os.mkdir(app_dir + "/Contents/MacOS")
  27. if target_bin != "":
  28. shutil.copy(target_bin, app_dir + "/Contents/MacOS/Godot")
  29. if "mono" in env.module_version_string:
  30. shutil.copytree(Dir("#bin/GodotSharp").abspath, app_dir + "/Contents/Resources/GodotSharp")
  31. version = get_build_version(False)
  32. short_version = get_build_version(True)
  33. with open(Dir("#misc/dist/macos").abspath + "/editor_info_plist.template", "rt", encoding="utf-8") as fin:
  34. with open(app_dir + "/Contents/Info.plist", "wt", encoding="utf-8", newline="\n") as fout:
  35. for line in fin:
  36. line = line.replace("$version", version)
  37. line = line.replace("$short_version", short_version)
  38. fout.write(line)
  39. # Sign .app bundle.
  40. if env["bundle_sign_identity"] != "":
  41. sign_command = [
  42. "codesign",
  43. "-s",
  44. env["bundle_sign_identity"],
  45. "--deep",
  46. "--force",
  47. "--options=runtime",
  48. "--entitlements",
  49. ]
  50. if env.dev_build:
  51. sign_command += [Dir("#misc/dist/macos").abspath + "/editor_debug.entitlements"]
  52. else:
  53. sign_command += [Dir("#misc/dist/macos").abspath + "/editor.entitlements"]
  54. sign_command += [app_dir]
  55. subprocess.run(sign_command)
  56. else:
  57. # Template bundle.
  58. app_prefix = "godot." + env["platform"]
  59. rel_prefix = "godot." + env["platform"] + "." + "template_release"
  60. dbg_prefix = "godot." + env["platform"] + "." + "template_debug"
  61. if env.dev_build:
  62. app_prefix += ".dev"
  63. rel_prefix += ".dev"
  64. dbg_prefix += ".dev"
  65. if env["precision"] == "double":
  66. app_prefix += ".double"
  67. rel_prefix += ".double"
  68. dbg_prefix += ".double"
  69. # Lipo template executables.
  70. rel_target_bin = lipo(bin_dir + "/" + rel_prefix, env.extra_suffix + env.module_version_string)
  71. dbg_target_bin = lipo(bin_dir + "/" + dbg_prefix, env.extra_suffix + env.module_version_string)
  72. # Assemble .app bundle.
  73. app_dir = Dir("#bin/macos_template.app").abspath
  74. templ = Dir("#misc/dist/macos_template.app").abspath
  75. if os.path.exists(app_dir):
  76. shutil.rmtree(app_dir)
  77. shutil.copytree(templ, app_dir)
  78. if not os.path.isdir(app_dir + "/Contents/MacOS"):
  79. os.mkdir(app_dir + "/Contents/MacOS")
  80. if rel_target_bin != "":
  81. shutil.copy(rel_target_bin, app_dir + "/Contents/MacOS/godot_macos_release.universal")
  82. if dbg_target_bin != "":
  83. shutil.copy(dbg_target_bin, app_dir + "/Contents/MacOS/godot_macos_debug.universal")
  84. # ZIP .app bundle.
  85. zip_dir = Dir("#bin/" + (app_prefix + env.extra_suffix + env.module_version_string).replace(".", "_")).abspath
  86. shutil.make_archive(zip_dir, "zip", root_dir=bin_dir, base_dir="macos_template.app")
  87. shutil.rmtree(app_dir)
  88. files = [
  89. "os_macos.mm",
  90. "godot_application.mm",
  91. "godot_application_delegate.mm",
  92. "crash_handler_macos.mm",
  93. "macos_terminal_logger.mm",
  94. "display_server_macos.mm",
  95. "godot_button_view.mm",
  96. "godot_content_view.mm",
  97. "godot_status_item.mm",
  98. "godot_window_delegate.mm",
  99. "godot_window.mm",
  100. "key_mapping_macos.mm",
  101. "godot_main_macos.mm",
  102. "godot_menu_delegate.mm",
  103. "godot_menu_item.mm",
  104. "godot_open_save_delegate.mm",
  105. "native_menu_macos.mm",
  106. "dir_access_macos.mm",
  107. "tts_macos.mm",
  108. "joypad_macos.mm",
  109. "rendering_context_driver_vulkan_macos.mm",
  110. "gl_manager_macos_angle.mm",
  111. "gl_manager_macos_legacy.mm",
  112. ]
  113. prog = env.add_program("#bin/godot", files)
  114. if env["debug_symbols"] and env["separate_debug_symbols"]:
  115. env.AddPostAction(prog, env.Run(platform_macos_builders.make_debug_macos))
  116. if env["generate_bundle"]:
  117. generate_bundle_command = env.Command("generate_bundle", [], generate_bundle)
  118. command = env.AlwaysBuild(generate_bundle_command)
  119. env.Depends(command, [prog])