mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-25 02:30:27 +01:00
Be explicit about building for debug target
This commit is contained in:
parent
0743f2a97a
commit
03f9b84b71
1 changed files with 2 additions and 2 deletions
|
@ -28,11 +28,11 @@ fi
|
|||
|
||||
# Build godot-cpp bindings.
|
||||
cd ${GODOT_CPP_DIR}
|
||||
scons generate_bindings=yes -j$(nproc)
|
||||
scons generate_bindings=yes target=debug -j$(nproc)
|
||||
|
||||
# Build libgodot-xterm.
|
||||
cd ${NATIVE_DIR}
|
||||
scons -j$(nproc)
|
||||
scons target=debug -j$(nproc)
|
||||
|
||||
# Use Docker to build libgodot-xterm javascript.
|
||||
UID_GID="0:0" docker-compose build javascript
|
||||
|
|
Loading…
Reference in a new issue