mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 19:25:35 +08:00
19 lines
448 B
Bash
19 lines
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 .. |