mirror of
https://github.com/godotengine/godot-git-plugin.git
synced 2026-01-01 01:48:28 +03:00
Fixes #94 This backports a fix from v2.x which adds the builtin version of pcre as a static dependency, rather than relying on the OS to provide pcre
25 lines
779 B
Bash
Executable File
25 lines
779 B
Bash
Executable File
git submodule init;
|
|
git submodule update --init --recursive;
|
|
|
|
cd godot-git-plugin/thirdparty/libgit2/
|
|
mkdir build
|
|
cd build/
|
|
rm -f CMakeCache.txt
|
|
cmake .. -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DBUILD_SHARED_LIBS=OFF -DBUILD_CLAR=OFF -DBUILD_EXAMPLES=OFF -DUSE_SSH=OFF -DUSE_HTTPS=OFF -DUSE_BUNDLED_ZLIB=ON -DREGEX_BACKEND=builtin
|
|
cmake --build . --config $1
|
|
cd ../../../../
|
|
mkdir -p "demo/addons/godot-git-plugin/x11/"
|
|
cp "godot-git-plugin/thirdparty/libgit2/build/libgit2.a" "demo/addons/godot-git-plugin/x11/libgit2.a"
|
|
|
|
if [ -z "$CI" ]
|
|
then
|
|
echo "Non-CI run was detected"
|
|
else
|
|
echo "CI run was detected"
|
|
fi
|
|
|
|
cd godot-cpp/;
|
|
CORES=$(grep -c \^processor /proc/cpuinfo 2>/dev/null || sysctl -n hw.ncpu)
|
|
scons platform=linux target=$1 generate_bindings=yes bits=64 -j$CORES;
|
|
cd ..
|