https://github.com/shader-slang/slang
Raw File
Tip revision: 3f6609a61465a09ad83ecbab5f59ec9475e5cc81 authored by jsmall-nvidia on 07 March 2019, 16:17:49 UTC
On doing complete rebuild hlsl.meta.slang.h appears to be slightly out of step. (#884)
Tip revision: 3f6609a
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