mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-08 13:20:06 +00:00
16 lines
477 B
Bash
16 lines
477 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "Building spirv-cross"
|
||
|
make -j$(nproc)
|
||
|
|
||
|
export PATH="./external/glslang-build/StandAlone:./external/spirv-tools-build/tools:$PATH"
|
||
|
echo "Using glslangValidation in: $(which glslangValidator)."
|
||
|
echo "Using spirv-opt in: $(which spirv-opt)."
|
||
|
|
||
|
./test_shaders.py shaders
|
||
|
./test_shaders.py shaders --opt
|
||
|
./test_shaders.py shaders-msl --msl
|
||
|
./test_shaders.py shaders-msl --msl --opt
|
||
|
./test_shaders.py shaders-hlsl --hlsl
|
||
|
./test_shaders.py shaders-hlsl --hlsl --opt
|