Compare commits
4 Commits
ebd4c87c8e
...
54da2b8be7
Author | SHA1 | Date |
---|---|---|
werner mendizabal | 54da2b8be7 | |
David Snopek | 36847f6af0 | |
MJacred | 8a535d0ecc | |
werner mendizabal | f157211eb5 |
|
@ -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.
|
||||
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue