From dd795605cfae7ccd06d866ee19de5663a045512b Mon Sep 17 00:00:00 2001 From: orbea Date: Mon, 29 Nov 2021 08:22:50 -0800 Subject: [PATCH] ext/SPIRV-Cross-build: Update cmake version This matches the upstream SPIRV-Cross CMakeLists.txt. Also silences a warning. CMake Deprecation Warning at ext/SPIRV-Cross-build/CMakeLists.txt:15 (cmake_minimum_required): Compatibility with CMake < 2.8.12 will be removed from a future version of CMake. Update the VERSION argument value or use a ... suffix to tell CMake that the project does not need compatibility with older versions. --- ext/SPIRV-Cross-build/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/SPIRV-Cross-build/CMakeLists.txt b/ext/SPIRV-Cross-build/CMakeLists.txt index 25e42a703d..608483edfa 100644 --- a/ext/SPIRV-Cross-build/CMakeLists.txt +++ b/ext/SPIRV-Cross-build/CMakeLists.txt @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 3.0) project(SPIRV-Cross) enable_testing()