mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
a022104230
Former-commit-id: f9474fe533
27 lines
494 B
Bash
Executable file
27 lines
494 B
Bash
Executable file
#! /usr/bin/env nix-shell
|
|
#! nix-shell -i bash --pure -p binutils.bintools cmake scons
|
|
|
|
# Make sure we are in the addons/godot_xterm directory
|
|
cd ${BASH_SOURCE%/*}
|
|
|
|
# Initialize godot-cpp
|
|
if [ ! -d "godot-cpp/bin" ]
|
|
then
|
|
cd godot-cpp
|
|
scons platform=linux generate_bindings=yes -j12
|
|
cd ..
|
|
fi
|
|
|
|
# Build libtsm
|
|
if [ ! -f "libtsm/build/src/tsm/libtsm.a" ]
|
|
then
|
|
cd libtsm
|
|
mkdir -p build
|
|
cd build
|
|
cmake -DBUILD_SHARED_LIBS=n ..
|
|
make
|
|
cd ../..
|
|
fi
|
|
|
|
# Build godotxtermnative
|
|
scons platform=linux
|