mirror of
https://github.com/godotengine/godot-git-plugin.git
synced 2026-01-07 06:10:00 +03:00
17 lines
367 B
Bash
Executable File
17 lines
367 B
Bash
Executable File
git submodule init;
|
|
git submodule update --init --recursive;
|
|
|
|
cd godot-git-plugin/thirdparty/libgit2/
|
|
mkdir build
|
|
cd build/
|
|
rm CMakeCache.txt
|
|
cmake ..
|
|
cmake --build .
|
|
cd ../../../../
|
|
mv godot-git-plugin/thirdparty/libgit2/build/libgit2.a demo/bin/x11/libgit2.a
|
|
|
|
cd godot-cpp/;
|
|
apt-get install scons
|
|
scons platform=linux target=$1 generate_bindings=yes bits=64;
|
|
cd ..
|