Skip to content
This repository has been archived by the owner on Jun 29, 2024. It is now read-only.

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
Ughuuu committed Nov 6, 2023
1 parent 1a135fc commit 8c31aeb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ runs:
SCONS_CACHE_DIR: .scons-cache
run: |
cd godot-cpp && \
scons target=template_debug platform=${{ inputs.platform }} arch=${{ inputs.arch }} generate_bindings=yes && \
scons target=template_release platform=${{ inputs.platform }} arch=${{ inputs.arch }} generate_bindings=yes
scons target=template_debug platform=${{ inputs.platform }} arch=${{ inputs.arch }} generate_bindings=yes production=yes && \
scons target=template_release platform=${{ inputs.platform }} arch=${{ inputs.arch }} generate_bindings=yes production=yes
- name: Build Physics Server Box2D
shell: sh
env:
Expand Down
4 changes: 4 additions & 0 deletions bin/addons/godot-box2d/godot-box2d.gdextension
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ linux.debug.x86_64 = "res://addons/godot-box2d/bin/libgodot-box2d.linux.template
linux.release.x86_64 = "res://addons/godot-box2d/bin/libgodot-box2d.linux.template_release.x86_64.so"
android.debug.x86_64 = "res://addons/godot-box2d/bin/libgodot-box2d.android.template_debug.x86_64.so"
android.release.x86_64 = "res://addons/godot-box2d/bin/libgodot-box2d.android.template_release.x86_64.so"
android.debug.x86_32 = "res://addons/godot-box2d/bin/libgodot-box2d.android.template_debug.x86_32.so"
android.release.x86_32 = "res://addons/godot-box2d/bin/libgodot-box2d.android.template_release.x86_32.so"
android.debug.arm64 = "res://addons/godot-box2d/bin/libgodot-box2d.android.template_debug.arm64.so"
android.release.arm64 = "res://addons/godot-box2d/bin/libgodot-box2d.android.template_release.arm64.so"
android.debug.arm32 = "res://addons/godot-box2d/bin/libgodot-box2d.android.template_debug.arm32.so"
android.release.arm32 = "res://addons/godot-box2d/bin/libgodot-box2d.android.template_release.arm32.so"
web.debug.wasm32 = "res://addons/godot-box2d/bin/libgodot-box2d.web.template_debug.wasm32.wasm"
web.release.wasm32 = "res://addons/godot-box2d/bin/libgodot-box2d.web.template_release.wasm32.wasm"

0 comments on commit 8c31aeb

Please sign in to comment.