diff options
author | George L. Albany <Megacake1234@gmail.com> | 2023-07-27 17:34:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-27 17:34:59 +0200 |
commit | debb71065c8947ee6d79c981eb43d631beb11294 (patch) | |
tree | 09cb0fa0a1dbe83d4833bcd62dc8832161e4329b /tools/macos.py | |
parent | 65443efcc2f4c7d687b2bd9c631f6bb426688bbf (diff) | |
parent | be1d0545c2f7a85a63d05b4bdc1020ee284e72cb (diff) |
Merge pull request #2 from OpenVicProject/let-the-games-begin
Initial structural commit
Diffstat (limited to 'tools/macos.py')
-rw-r--r-- | tools/macos.py | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/tools/macos.py b/tools/macos.py new file mode 100644 index 0000000..f0fb81a --- /dev/null +++ b/tools/macos.py @@ -0,0 +1,51 @@ +# Copied from https://github.com/godotengine/godot-cpp/blob/2bf983e6382f5236948f7740faf130a3568f9dd0/tools/macos.py +import os +import sys +import macos_osxcross + + +def options(opts): + opts.Add("macos_deployment_target", "macOS deployment target", "default") + opts.Add("macos_sdk_path", "macOS SDK path", "") + macos_osxcross.options(opts) + + +def exists(env): + return sys.platform == "darwin" or macos_osxcross.exists(env) + + +def generate(env): + if env["arch"] not in ("universal", "arm64", "x86_64"): + print("Only universal, arm64, and x86_64 are supported on macOS. Exiting.") + Exit() + + if sys.platform == "darwin": + # Use clang on macOS by default + env["CXX"] = "clang++" + env["CC"] = "clang" + else: + # Use osxcross + macos_osxcross.generate(env) + + if env["arch"] == "universal": + env.Append(LINKFLAGS=["-arch", "x86_64", "-arch", "arm64"]) + env.Append(CCFLAGS=["-arch", "x86_64", "-arch", "arm64"]) + else: + env.Append(LINKFLAGS=["-arch", env["arch"]]) + env.Append(CCFLAGS=["-arch", env["arch"]]) + + if env["macos_deployment_target"] != "default": + env.Append(CCFLAGS=["-mmacosx-version-min=" + env["macos_deployment_target"]]) + env.Append(LINKFLAGS=["-mmacosx-version-min=" + env["macos_deployment_target"]]) + + if env["macos_sdk_path"]: + env.Append(CCFLAGS=["-isysroot", env["macos_sdk_path"]]) + env.Append(LINKFLAGS=["-isysroot", env["macos_sdk_path"]]) + + env.Append( + LINKFLAGS=[ + "-framework", + "Cocoa", + "-Wl,-undefined,dynamic_lookup", + ] + ) |