Compare commits

...

4 Commits

Author SHA1 Message Date
werner mendizabal 54da2b8be7
Merge f157211eb5 into 36847f6af0 2024-01-24 09:40:07 +02:00
David Snopek 36847f6af0
Merge pull request #1370 from MJacred/patch-1
Update README: fix godot-cpp issue tracker url
2024-01-22 08:57:08 -06:00
MJacred 8a535d0ecc
Update README: fix godot-cpp issue tracker url 2024-01-22 10:50:27 +01:00
werner mendizabal f157211eb5 Allow setting the osxcross target 2024-01-15 15:24:10 -06:00
2 changed files with 3 additions and 2 deletions

View File

@ -58,7 +58,7 @@ first-party `godot-cpp` extension.
Some compatibility breakage is to be expected as GDExtension and `godot-cpp`
get more used, documented, and critical issues get resolved. See the
[Godot issue tracker](https://github.com/godotengine/godot/issues?q=is%3Aissue+is%3Aopen+label%3Atopic%3Agdextension)
and the [godot-cpp issue tracker](https://github.com/godotengine/godot/issues)
and the [godot-cpp issue tracker](https://github.com/godotengine/godot-cpp/issues)
for a list of known issues, and be sure to provide feedback on issues and PRs
which affect your use of this extension.

View File

@ -10,7 +10,8 @@ def options(opts):
opts.Add("macos_deployment_target", "macOS deployment target", "default")
opts.Add("macos_sdk_path", "macOS SDK path", "")
if has_osxcross():
opts.Add("osxcross_sdk", "OSXCross SDK version", "darwin16")
osxcross_sdk = os.environ.get("OSXCROSS_TARGET", "darwin16")
opts.Add("osxcross_sdk", "OSXCross SDK version", osxcross_sdk)
def exists(env):