mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-15 00:11:06 +00:00
e7bf8d2f48
Makes maintenance easier with less clutter.
20 lines
691 B
Bash
Executable File
20 lines
691 B
Bash
Executable File
#!/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 || exit 1
|
|
./test_shaders.py shaders --opt || exit 1
|
|
./test_shaders.py shaders-no-opt || exit 1
|
|
./test_shaders.py shaders-msl --msl || exit 1
|
|
./test_shaders.py shaders-msl --msl --opt || exit 1
|
|
./test_shaders.py shaders-msl-no-opt --msl || exit 1
|
|
./test_shaders.py shaders-hlsl --hlsl || exit 1
|
|
./test_shaders.py shaders-hlsl --hlsl --opt || exit 1
|
|
./test_shaders.py shaders-hlsl-no-opt --hlsl || exit 1
|
|
|