1
0
Fork 0
mirror of https://github.com/Detanup01/gbe_fork.git synced 2025-04-29 19:44:52 +02:00
gbe_fork/build_linux_premake.sh

23 lines
502 B
Bash
Raw Normal View History

2024-05-14 18:33:05 +02:00
#!/usr/bin/env bash
# doto make a check here
curl -L "https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-linux.tar.gz" --ssl-no-revoke --output premake.tar.gz
tar -xf premake.tar.gz
chmod +777 premake5 # do we really need this?
./premake5 --os=linux generateproto
# target other than clang?
2024-05-14 19:56:37 +02:00
./premake5 --os=linux --cc=clang gmake
2024-05-14 18:33:05 +02:00
# going into build dir
cd GBE_Build
# you can select individual or all
# individual
#make config=debug_x32
# all
make
cd ..