1
0
Fork 0
mirror of https://github.com/Detanup01/gbe_fork.git synced 2025-04-21 21:52:06 +02:00
gbe_fork/build_linux_premake.sh
2024-05-21 19:32:49 +03:00

19 lines
No EOL
448 B
Bash

#!/usr/bin/env bash
chmod +777 third-party/common/win/premake/premake5
./third-party/common/win/premake/premake5 --os=linux genproto
# target other than clang?
./third-party/common/win/premake/premake5 --os=linux --cc=clang gmake2
# going into build dir
cd build/project/gmake2/linux
# you can select individual or all
# make config=debug_x32
make config=debug_x32
make config=debug_x64
make config=release_x32
make config=release_x64
cd ..