blob: d25958906c4b519eb394a80b77cbaf3236516bd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env bash
# Get premake
wget https://github.com/shader-slang/slang-binaries/blob/master/premake/premake-5.0.0-alpha13/bin/linux-64/premake5?raw=true -O premake5
chmod u+x premake5
# Create the makefile
./premake5 gmake --cc=${CC}
# Build the configuration
make config=${CONFIGURATION}_x64
|