https://github.com/shader-slang/slang
Raw File
Tip revision: f33aee2be9017934140da9fdfb0dcde15568b3a8 authored by jsmall-nvidia on 07 March 2019, 21:31:56 UTC
Fix problems with synthesized tests and inconsitent render-test command lines (#885)
Tip revision: f33aee2
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