mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-12 21:50:26 +01:00
3fb2580fc6
In a freshly cloned repo, submodule directories exist but are not empty. Check if they are empty and update submodules. Previously, submodules where only updated if their directories did not exist.
39 lines
1 KiB
Bash
Executable file
39 lines
1 KiB
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
|
|
#GODOT_DIR Get the absolute path to the directory this script is in.
|
|
NATIVE_DIR="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
|
|
|
|
|
# Run script inside a nix shell if it is available.
|
|
if command -v nix-shell && [ $NIX_PATH ] && [ -z $IN_NIX_SHELL ]; then
|
|
cd ${NATIVE_DIR}
|
|
nix-shell --pure --run "NIX_PATH=${NIX_PATH} ./build.sh $1"
|
|
exit
|
|
fi
|
|
|
|
|
|
# Update git submodules.
|
|
LIBTSM_DIR=${NATIVE_DIR}/thirdparty/libtsm
|
|
if [ -z "$(ls -A -- "$LIBTSM_DIR")" ]; then
|
|
cd ${NATIVE_DIR}
|
|
git submodule update --init --recursive -- $LIBTSM_DIR
|
|
fi
|
|
GODOT_CPP_DIR=${NATIVE_DIR}/thirdparty/godot-cpp
|
|
if [ -z "$(ls -A -- "$GODOT_CPP_DIR")" ]; then
|
|
cd ${NATIVE_DIR}
|
|
git submodule update --init --recursive -- $GODOT_CPP_DIR
|
|
fi
|
|
|
|
# Build godot-cpp bindings.
|
|
cd ${GODOT_CPP_DIR}
|
|
scons generate_bindings=yes -j$(nproc)
|
|
|
|
# Build libgodot-xterm.
|
|
cd ${NATIVE_DIR}
|
|
scons -j$(nproc)
|
|
|
|
# Use Docker to build libgodot-xterm javascript.
|
|
UID_GID="0:0" docker-compose build javascript
|
|
UID_GID="$(id -u):$(id -g)" docker-compose run javascript
|