From be0df09b3a96400f7b90df1e6ae2051a675255c8 Mon Sep 17 00:00:00 2001 From: Charles Giessen Date: Thu, 5 Oct 2023 17:19:03 -0600 Subject: [PATCH] Update CMake minimum to 3.15 The Vulkan-Headers has a minimum of 3.15, and there is no great reason to stay on such an old CMake version. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e18c4f..22869a0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.10 FATAL_ERROR) +cmake_minimum_required(VERSION 3.15 FATAL_ERROR) project(VulkanBootstrap LANGUAGES CXX DESCRIPTION "A Vulkan utility library to ease the initialization steps in Vulkan")