https://github.com/shader-slang/slang
Raw File
Tip revision: 48ae5496516878768d7de241b9b7fbba91fbaa74 authored by Tim Foley on 19 June 2019, 14:23:49 UTC
Start exposing a new COM-lite API (#987)
Tip revision: 48ae549
travis_build.sh
#!/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


back to top