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.
This commit is contained in:
Charles Giessen 2023-10-05 17:19:03 -06:00 committed by Charles Giessen
parent 1ab85e9e55
commit be0df09b3a

View File

@ -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")