2
0
mirror of https://github.com/godotengine/godot.git synced 2025-04-25 01:48:08 +08:00

SCons: Restore hardcoded build path on Android

This commit is contained in:
Thaddeus Crews 2025-03-15 23:26:01 -05:00
parent 0e2d1526b7
commit 54278a48e7
No known key found for this signature in database
GPG Key ID: 62181B86FE9E5D84

@ -44,7 +44,8 @@ env_thirdparty.disable_warnings()
thirdparty_obj = env_thirdparty.SharedObject("#thirdparty/misc/ifaddrs-android.cc")
android_objects.append(thirdparty_obj)
lib = env_android.add_shared_library("libgodot", android_objects)
# FIXME: Hardcoded to bin to ensure the directory exists if not redirecting build objects.
lib = env_android.add_shared_library("#bin/libgodot", android_objects, redirect_build_objects=False)
# Needed to force rebuilding the platform files when the thirdparty code is updated.
env.Depends(lib, thirdparty_obj)