Files
rust-ffi/Bootstrap.sh
2021-04-18 20:02:07 -03:00

29 lines
575 B
Bash

#!/usr/bin/env sh
echo "Installing dependencies..."
cargo install cbindgen
echo "Generating bindings..."
cbindgen --config ./Config/Bindings.toml --crate Library --output ./Source/Header.h --quiet
# Linux
if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ]
then
echo "Generating GMake project..."
sudo chmod +x ./Vendor/Premake/Linux/premake5
./Vendor/Premake/Linux/premake5 gmake2
# Mac
elif [ "$(uname)" = "Darwin" ]
then
echo "Generating XCode project..."
sudo chmod +x ./Vendor/Premake/Mac/premake5
./Vendor/Premake/Mac/premake5 xcode4
fi