Files
sdk-cpp/bootstrap.sh
Guilherme Werner 64c60a294c Create c++ project
2023-12-01 21:19:37 -03:00

11 lines
198 B
Bash

#!/usr/bin/env sh
if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ]
then
./vendor/premake/linux/premake5 gmake2
elif [ "$(uname)" = "Darwin" ]
then
./vendor/premake/mac/premake5 xcode4
fi