11 lines
274 B
Bash
Executable File
11 lines
274 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2016-2018 The Brenwill Workshop Ltd.
|
|
#
|
|
# getLatestSPIRVCross - Updates to the latest version of SPIRV-Cross submodule.
|
|
#
|
|
# macOS usage: ./getLatestSPIRVCross
|
|
|
|
rm -rf SPIRV-Cross
|
|
git clone https://github.com/KhronosGroup/SPIRV-Cross.git
|