diff --git a/BUILD.md b/BUILD.md index 942d9bdf..83cc9d5b 100644 --- a/BUILD.md +++ b/BUILD.md @@ -1,6 +1,6 @@ # Building -The repository contains everything required to compile and build the examples on Windows, Linux, Android and MacOS using a C++ compiler that supports at least C++14. All required dependencies are included. The project uses [CMake](https://cmake.org/) as the build system. +The repository contains everything required to compile and build the examples on Windows, Linux, Android and MacOS using a C++ compiler that supports at least C++20. All required dependencies are included. The project uses [CMake](https://cmake.org/) as the build system, min. required version is CMake 3.10.0. ## General CMake options diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d8e3994..3455a65d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (C) 2016-2025 by Sascha Willems - www.saschawillems.de # This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT) -cmake_minimum_required(VERSION 3.4 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") set(NAME vulkanExamples) @@ -26,11 +26,8 @@ OPTION(FORCE_VALIDATION "Forces validation on for all samples at compile time (p set(RESOURCE_INSTALL_DIR "" CACHE PATH "Path to install resources to (leave empty for running uninstalled)") -# Use FindVulkan module added with CMAKE 3.7 -if (NOT CMAKE_VERSION VERSION_LESS 3.7.0) - message(STATUS "Using module to find Vulkan") - find_package(Vulkan) -endif() +message(STATUS "Using module to find Vulkan") +find_package(Vulkan) IF(UNIX AND NOT APPLE) set(LINUX TRUE) diff --git a/android/examples/_template/CMakeLists.txt b/android/examples/_template/CMakeLists.txt index d796d7e4..3411e789 100644 --- a/android/examples/_template/CMakeLists.txt +++ b/android/examples/_template/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME %EXAMPLE_FOLDER%) diff --git a/android/examples/bloom/CMakeLists.txt b/android/examples/bloom/CMakeLists.txt index 91810cef..ac3ec0e5 100644 --- a/android/examples/bloom/CMakeLists.txt +++ b/android/examples/bloom/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME bloom) diff --git a/android/examples/bufferdeviceaddress/CMakeLists.txt b/android/examples/bufferdeviceaddress/CMakeLists.txt index 6fd13dda..4f4a35e6 100644 --- a/android/examples/bufferdeviceaddress/CMakeLists.txt +++ b/android/examples/bufferdeviceaddress/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME bufferdeviceaddress) diff --git a/android/examples/computecloth/CMakeLists.txt b/android/examples/computecloth/CMakeLists.txt index 6c358fbf..0b801305 100644 --- a/android/examples/computecloth/CMakeLists.txt +++ b/android/examples/computecloth/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME computecloth) diff --git a/android/examples/computecullandlod/CMakeLists.txt b/android/examples/computecullandlod/CMakeLists.txt index 93e8caaa..1bdf0390 100644 --- a/android/examples/computecullandlod/CMakeLists.txt +++ b/android/examples/computecullandlod/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME computecullandlod) diff --git a/android/examples/computeheadless/CMakeLists.txt b/android/examples/computeheadless/CMakeLists.txt index 67c6303d..4b88223b 100644 --- a/android/examples/computeheadless/CMakeLists.txt +++ b/android/examples/computeheadless/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME computeheadless) diff --git a/android/examples/computenbody/CMakeLists.txt b/android/examples/computenbody/CMakeLists.txt index 4bff99aa..a4898de9 100644 --- a/android/examples/computenbody/CMakeLists.txt +++ b/android/examples/computenbody/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME computenbody) diff --git a/android/examples/computeparticles/CMakeLists.txt b/android/examples/computeparticles/CMakeLists.txt index 5b694b21..0a0255ff 100644 --- a/android/examples/computeparticles/CMakeLists.txt +++ b/android/examples/computeparticles/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME computeparticles) diff --git a/android/examples/computeraytracing/CMakeLists.txt b/android/examples/computeraytracing/CMakeLists.txt index 2799a827..801d15dd 100644 --- a/android/examples/computeraytracing/CMakeLists.txt +++ b/android/examples/computeraytracing/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME computeraytracing) diff --git a/android/examples/computeshader/CMakeLists.txt b/android/examples/computeshader/CMakeLists.txt index 1650bfa6..688dd589 100644 --- a/android/examples/computeshader/CMakeLists.txt +++ b/android/examples/computeshader/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME computeshader) diff --git a/android/examples/conditionalrender/CMakeLists.txt b/android/examples/conditionalrender/CMakeLists.txt index bafe0d16..bca54576 100644 --- a/android/examples/conditionalrender/CMakeLists.txt +++ b/android/examples/conditionalrender/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME conditionalrender) diff --git a/android/examples/conservativeraster/CMakeLists.txt b/android/examples/conservativeraster/CMakeLists.txt index c5dbae11..70705814 100644 --- a/android/examples/conservativeraster/CMakeLists.txt +++ b/android/examples/conservativeraster/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME conservativeraster) diff --git a/android/examples/debugprintf/CMakeLists.txt b/android/examples/debugprintf/CMakeLists.txt index 1c1a3f22..5ce8a32e 100644 --- a/android/examples/debugprintf/CMakeLists.txt +++ b/android/examples/debugprintf/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME debugprintf) diff --git a/android/examples/debugutils/CMakeLists.txt b/android/examples/debugutils/CMakeLists.txt index 6c451f2b..48ba3a6f 100644 --- a/android/examples/debugutils/CMakeLists.txt +++ b/android/examples/debugutils/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME debugutils) diff --git a/android/examples/deferred/CMakeLists.txt b/android/examples/deferred/CMakeLists.txt index 09fae986..2f9aa0ff 100644 --- a/android/examples/deferred/CMakeLists.txt +++ b/android/examples/deferred/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME deferred) diff --git a/android/examples/deferredmultisampling/CMakeLists.txt b/android/examples/deferredmultisampling/CMakeLists.txt index 65b46893..9c01e50f 100644 --- a/android/examples/deferredmultisampling/CMakeLists.txt +++ b/android/examples/deferredmultisampling/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME deferredmultisampling) diff --git a/android/examples/deferredshadows/CMakeLists.txt b/android/examples/deferredshadows/CMakeLists.txt index bf1d5ba4..8523380e 100644 --- a/android/examples/deferredshadows/CMakeLists.txt +++ b/android/examples/deferredshadows/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME deferredshadows) diff --git a/android/examples/descriptorbuffer/CMakeLists.txt b/android/examples/descriptorbuffer/CMakeLists.txt index da2ff049..8b1f3694 100644 --- a/android/examples/descriptorbuffer/CMakeLists.txt +++ b/android/examples/descriptorbuffer/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME descriptorbuffer) diff --git a/android/examples/descriptorindexing/CMakeLists.txt b/android/examples/descriptorindexing/CMakeLists.txt index 35801d46..69a813ea 100644 --- a/android/examples/descriptorindexing/CMakeLists.txt +++ b/android/examples/descriptorindexing/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME descriptorindexing) diff --git a/android/examples/descriptorsets/CMakeLists.txt b/android/examples/descriptorsets/CMakeLists.txt index 17d11995..639667ea 100644 --- a/android/examples/descriptorsets/CMakeLists.txt +++ b/android/examples/descriptorsets/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME descriptorsets) diff --git a/android/examples/displacement/CMakeLists.txt b/android/examples/displacement/CMakeLists.txt index e1157166..300c9dd4 100644 --- a/android/examples/displacement/CMakeLists.txt +++ b/android/examples/displacement/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME displacement) diff --git a/android/examples/distancefieldfonts/CMakeLists.txt b/android/examples/distancefieldfonts/CMakeLists.txt index 7b8555fc..7694a122 100644 --- a/android/examples/distancefieldfonts/CMakeLists.txt +++ b/android/examples/distancefieldfonts/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME distancefieldfonts) diff --git a/android/examples/dynamicrendering/CMakeLists.txt b/android/examples/dynamicrendering/CMakeLists.txt index 46bef3bc..0611870c 100644 --- a/android/examples/dynamicrendering/CMakeLists.txt +++ b/android/examples/dynamicrendering/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME dynamicrendering) diff --git a/android/examples/dynamicrenderingmultisampling/CMakeLists.txt b/android/examples/dynamicrenderingmultisampling/CMakeLists.txt index aafb911d..256b5b4f 100644 --- a/android/examples/dynamicrenderingmultisampling/CMakeLists.txt +++ b/android/examples/dynamicrenderingmultisampling/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME dynamicrenderingmultisampling) diff --git a/android/examples/dynamicstate/CMakeLists.txt b/android/examples/dynamicstate/CMakeLists.txt index e688103b..67dfc8b7 100644 --- a/android/examples/dynamicstate/CMakeLists.txt +++ b/android/examples/dynamicstate/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME dynamicstate) diff --git a/android/examples/dynamicuniformbuffer/CMakeLists.txt b/android/examples/dynamicuniformbuffer/CMakeLists.txt index dc984b2e..80540406 100644 --- a/android/examples/dynamicuniformbuffer/CMakeLists.txt +++ b/android/examples/dynamicuniformbuffer/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME dynamicuniformbuffer) diff --git a/android/examples/gears/CMakeLists.txt b/android/examples/gears/CMakeLists.txt index 45c09bf6..c91b527a 100644 --- a/android/examples/gears/CMakeLists.txt +++ b/android/examples/gears/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME gears) diff --git a/android/examples/geometryshader/CMakeLists.txt b/android/examples/geometryshader/CMakeLists.txt index 0638e6f5..a743e06a 100644 --- a/android/examples/geometryshader/CMakeLists.txt +++ b/android/examples/geometryshader/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME geometryshader) diff --git a/android/examples/gltfloading/CMakeLists.txt b/android/examples/gltfloading/CMakeLists.txt index 155ea0b3..47229876 100644 --- a/android/examples/gltfloading/CMakeLists.txt +++ b/android/examples/gltfloading/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME gltfloading) diff --git a/android/examples/gltfscenerendering/CMakeLists.txt b/android/examples/gltfscenerendering/CMakeLists.txt index 8457151a..e73fa443 100644 --- a/android/examples/gltfscenerendering/CMakeLists.txt +++ b/android/examples/gltfscenerendering/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME gltfscenerendering) diff --git a/android/examples/gltfskinning/CMakeLists.txt b/android/examples/gltfskinning/CMakeLists.txt index e9919822..32e4f6b1 100644 --- a/android/examples/gltfskinning/CMakeLists.txt +++ b/android/examples/gltfskinning/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME gltfskinning) diff --git a/android/examples/graphicspipelinelibrary/CMakeLists.txt b/android/examples/graphicspipelinelibrary/CMakeLists.txt index 9aeabef7..d789ea68 100644 --- a/android/examples/graphicspipelinelibrary/CMakeLists.txt +++ b/android/examples/graphicspipelinelibrary/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME graphicspipelinelibrary) diff --git a/android/examples/hdr/CMakeLists.txt b/android/examples/hdr/CMakeLists.txt index 7f9857b8..6e84bcef 100644 --- a/android/examples/hdr/CMakeLists.txt +++ b/android/examples/hdr/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME hdr) diff --git a/android/examples/hostimagecopy/CMakeLists.txt b/android/examples/hostimagecopy/CMakeLists.txt index d6cdb0d8..cdee596e 100644 --- a/android/examples/hostimagecopy/CMakeLists.txt +++ b/android/examples/hostimagecopy/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME hostimagecopy) diff --git a/android/examples/imgui/CMakeLists.txt b/android/examples/imgui/CMakeLists.txt index 6858b197..6ee5d400 100644 --- a/android/examples/imgui/CMakeLists.txt +++ b/android/examples/imgui/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME imgui) diff --git a/android/examples/indirectdraw/CMakeLists.txt b/android/examples/indirectdraw/CMakeLists.txt index c9ba7a28..5480399b 100644 --- a/android/examples/indirectdraw/CMakeLists.txt +++ b/android/examples/indirectdraw/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME indirectdraw) diff --git a/android/examples/inlineuniformblocks/CMakeLists.txt b/android/examples/inlineuniformblocks/CMakeLists.txt index 213b4786..276636c6 100644 --- a/android/examples/inlineuniformblocks/CMakeLists.txt +++ b/android/examples/inlineuniformblocks/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME inlineuniformblocks) diff --git a/android/examples/inputattachments/CMakeLists.txt b/android/examples/inputattachments/CMakeLists.txt index 3fd769ea..d07704e2 100644 --- a/android/examples/inputattachments/CMakeLists.txt +++ b/android/examples/inputattachments/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME inputattachments) diff --git a/android/examples/instancing/CMakeLists.txt b/android/examples/instancing/CMakeLists.txt index e458cf32..0949f09c 100644 --- a/android/examples/instancing/CMakeLists.txt +++ b/android/examples/instancing/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME instancing) diff --git a/android/examples/meshshader/CMakeLists.txt b/android/examples/meshshader/CMakeLists.txt index 01bc8a7f..f6f0f28d 100644 --- a/android/examples/meshshader/CMakeLists.txt +++ b/android/examples/meshshader/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME meshshader) diff --git a/android/examples/multisampling/CMakeLists.txt b/android/examples/multisampling/CMakeLists.txt index 993c0205..7dd374c7 100644 --- a/android/examples/multisampling/CMakeLists.txt +++ b/android/examples/multisampling/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME multisampling) diff --git a/android/examples/multithreading/CMakeLists.txt b/android/examples/multithreading/CMakeLists.txt index f36d14b6..e7e07b83 100644 --- a/android/examples/multithreading/CMakeLists.txt +++ b/android/examples/multithreading/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME multithreading) diff --git a/android/examples/multiview/CMakeLists.txt b/android/examples/multiview/CMakeLists.txt index 7bcf7e8f..5280226c 100644 --- a/android/examples/multiview/CMakeLists.txt +++ b/android/examples/multiview/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME multiview) diff --git a/android/examples/negativeviewportheight/CMakeLists.txt b/android/examples/negativeviewportheight/CMakeLists.txt index 3baa8f40..9554a347 100644 --- a/android/examples/negativeviewportheight/CMakeLists.txt +++ b/android/examples/negativeviewportheight/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME negativeviewportheight) diff --git a/android/examples/occlusionquery/CMakeLists.txt b/android/examples/occlusionquery/CMakeLists.txt index c1f78072..b33dbdcb 100644 --- a/android/examples/occlusionquery/CMakeLists.txt +++ b/android/examples/occlusionquery/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME occlusionquery) diff --git a/android/examples/offscreen/CMakeLists.txt b/android/examples/offscreen/CMakeLists.txt index 9b9819f0..35f62af4 100644 --- a/android/examples/offscreen/CMakeLists.txt +++ b/android/examples/offscreen/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME offscreen) diff --git a/android/examples/oit/CMakeLists.txt b/android/examples/oit/CMakeLists.txt index 2a2a178e..86202e17 100644 --- a/android/examples/oit/CMakeLists.txt +++ b/android/examples/oit/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME oit) diff --git a/android/examples/parallaxmapping/CMakeLists.txt b/android/examples/parallaxmapping/CMakeLists.txt index 824485e0..a3204944 100644 --- a/android/examples/parallaxmapping/CMakeLists.txt +++ b/android/examples/parallaxmapping/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME parallaxmapping) diff --git a/android/examples/particlesystem/CMakeLists.txt b/android/examples/particlesystem/CMakeLists.txt index 6f02a2f8..99a3861e 100644 --- a/android/examples/particlesystem/CMakeLists.txt +++ b/android/examples/particlesystem/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME particlesystem) diff --git a/android/examples/pbrbasic/CMakeLists.txt b/android/examples/pbrbasic/CMakeLists.txt index 9e07f359..fccf7131 100644 --- a/android/examples/pbrbasic/CMakeLists.txt +++ b/android/examples/pbrbasic/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME pbrbasic) diff --git a/android/examples/pbribl/CMakeLists.txt b/android/examples/pbribl/CMakeLists.txt index 89573311..daaf7c9c 100644 --- a/android/examples/pbribl/CMakeLists.txt +++ b/android/examples/pbribl/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME pbribl) diff --git a/android/examples/pbrtexture/CMakeLists.txt b/android/examples/pbrtexture/CMakeLists.txt index 118570e5..1f08cd14 100644 --- a/android/examples/pbrtexture/CMakeLists.txt +++ b/android/examples/pbrtexture/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME pbrtexture) diff --git a/android/examples/pipelines/CMakeLists.txt b/android/examples/pipelines/CMakeLists.txt index e28bffa6..b9e2e61d 100644 --- a/android/examples/pipelines/CMakeLists.txt +++ b/android/examples/pipelines/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME pipelines) diff --git a/android/examples/pipelinestatistics/CMakeLists.txt b/android/examples/pipelinestatistics/CMakeLists.txt index b1d3c1dc..c2bbec2b 100644 --- a/android/examples/pipelinestatistics/CMakeLists.txt +++ b/android/examples/pipelinestatistics/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME pipelinestatistics) diff --git a/android/examples/pushconstants/CMakeLists.txt b/android/examples/pushconstants/CMakeLists.txt index 67ec3755..349ad3c1 100644 --- a/android/examples/pushconstants/CMakeLists.txt +++ b/android/examples/pushconstants/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME pushconstants) diff --git a/android/examples/pushdescriptors/CMakeLists.txt b/android/examples/pushdescriptors/CMakeLists.txt index ff150f22..cecf5905 100644 --- a/android/examples/pushdescriptors/CMakeLists.txt +++ b/android/examples/pushdescriptors/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME pushdescriptors) diff --git a/android/examples/radialblur/CMakeLists.txt b/android/examples/radialblur/CMakeLists.txt index 1606a2e4..b684bad9 100644 --- a/android/examples/radialblur/CMakeLists.txt +++ b/android/examples/radialblur/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME radialblur) diff --git a/android/examples/rayquery/CMakeLists.txt b/android/examples/rayquery/CMakeLists.txt index 28791632..4d29127a 100644 --- a/android/examples/rayquery/CMakeLists.txt +++ b/android/examples/rayquery/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME rayquery) diff --git a/android/examples/raytracingbasic/CMakeLists.txt b/android/examples/raytracingbasic/CMakeLists.txt index b54ee8ce..25138d07 100644 --- a/android/examples/raytracingbasic/CMakeLists.txt +++ b/android/examples/raytracingbasic/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME raytracingbasic) diff --git a/android/examples/raytracingcallable/CMakeLists.txt b/android/examples/raytracingcallable/CMakeLists.txt index 603ac631..02fbd15d 100644 --- a/android/examples/raytracingcallable/CMakeLists.txt +++ b/android/examples/raytracingcallable/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME raytracingcallable) diff --git a/android/examples/raytracinggltf/CMakeLists.txt b/android/examples/raytracinggltf/CMakeLists.txt index 1ac40dc2..bfe906f1 100644 --- a/android/examples/raytracinggltf/CMakeLists.txt +++ b/android/examples/raytracinggltf/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME raytracinggltf) diff --git a/android/examples/raytracingintersection/CMakeLists.txt b/android/examples/raytracingintersection/CMakeLists.txt index a6bab57d..5ae76ede 100644 --- a/android/examples/raytracingintersection/CMakeLists.txt +++ b/android/examples/raytracingintersection/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME raytracingintersection) diff --git a/android/examples/raytracingpositionfetch/CMakeLists.txt b/android/examples/raytracingpositionfetch/CMakeLists.txt index bcf0a33d..04f57764 100644 --- a/android/examples/raytracingpositionfetch/CMakeLists.txt +++ b/android/examples/raytracingpositionfetch/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME raytracingpositionfetch) diff --git a/android/examples/raytracingreflections/CMakeLists.txt b/android/examples/raytracingreflections/CMakeLists.txt index 4acffbd2..cba5509a 100644 --- a/android/examples/raytracingreflections/CMakeLists.txt +++ b/android/examples/raytracingreflections/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME raytracingreflections) diff --git a/android/examples/raytracingsbtdata/CMakeLists.txt b/android/examples/raytracingsbtdata/CMakeLists.txt index a14ba7a6..103555e5 100644 --- a/android/examples/raytracingsbtdata/CMakeLists.txt +++ b/android/examples/raytracingsbtdata/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME raytracingsbtdata) diff --git a/android/examples/raytracingshadows/CMakeLists.txt b/android/examples/raytracingshadows/CMakeLists.txt index 656a60d7..d273e282 100644 --- a/android/examples/raytracingshadows/CMakeLists.txt +++ b/android/examples/raytracingshadows/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME raytracingshadows) diff --git a/android/examples/raytracingtextures/CMakeLists.txt b/android/examples/raytracingtextures/CMakeLists.txt index ace3f0bb..cf3fad0c 100644 --- a/android/examples/raytracingtextures/CMakeLists.txt +++ b/android/examples/raytracingtextures/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME raytracingtextures) diff --git a/android/examples/renderheadless/CMakeLists.txt b/android/examples/renderheadless/CMakeLists.txt index 04c80615..6e7b3bb1 100644 --- a/android/examples/renderheadless/CMakeLists.txt +++ b/android/examples/renderheadless/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME renderheadless) diff --git a/android/examples/screenshot/CMakeLists.txt b/android/examples/screenshot/CMakeLists.txt index 041e001d..1ef51c7d 100644 --- a/android/examples/screenshot/CMakeLists.txt +++ b/android/examples/screenshot/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME screenshot) diff --git a/android/examples/shaderobjects/CMakeLists.txt b/android/examples/shaderobjects/CMakeLists.txt index 3d31b53b..90086789 100644 --- a/android/examples/shaderobjects/CMakeLists.txt +++ b/android/examples/shaderobjects/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME shaderobjects) diff --git a/android/examples/shadowmapping/CMakeLists.txt b/android/examples/shadowmapping/CMakeLists.txt index 065e3008..2400cff9 100644 --- a/android/examples/shadowmapping/CMakeLists.txt +++ b/android/examples/shadowmapping/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME shadowmapping) diff --git a/android/examples/shadowmappingcascade/CMakeLists.txt b/android/examples/shadowmappingcascade/CMakeLists.txt index 090805ec..d5ce298f 100644 --- a/android/examples/shadowmappingcascade/CMakeLists.txt +++ b/android/examples/shadowmappingcascade/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME shadowmappingcascade) diff --git a/android/examples/shadowmappingomni/CMakeLists.txt b/android/examples/shadowmappingomni/CMakeLists.txt index 2ca85dc1..06ff0248 100644 --- a/android/examples/shadowmappingomni/CMakeLists.txt +++ b/android/examples/shadowmappingomni/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME shadowmappingomni) diff --git a/android/examples/specializationconstants/CMakeLists.txt b/android/examples/specializationconstants/CMakeLists.txt index 68d0c0db..179842ab 100644 --- a/android/examples/specializationconstants/CMakeLists.txt +++ b/android/examples/specializationconstants/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME specializationconstants) diff --git a/android/examples/sphericalenvmapping/CMakeLists.txt b/android/examples/sphericalenvmapping/CMakeLists.txt index d341deb6..810d62e6 100644 --- a/android/examples/sphericalenvmapping/CMakeLists.txt +++ b/android/examples/sphericalenvmapping/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME sphericalenvmapping) diff --git a/android/examples/ssao/CMakeLists.txt b/android/examples/ssao/CMakeLists.txt index cff6a9d3..7a4355d5 100644 --- a/android/examples/ssao/CMakeLists.txt +++ b/android/examples/ssao/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME ssao) diff --git a/android/examples/stencilbuffer/CMakeLists.txt b/android/examples/stencilbuffer/CMakeLists.txt index ee716941..5f75f0f7 100644 --- a/android/examples/stencilbuffer/CMakeLists.txt +++ b/android/examples/stencilbuffer/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME stencilbuffer) diff --git a/android/examples/subpasses/CMakeLists.txt b/android/examples/subpasses/CMakeLists.txt index 3115b758..707fbbc4 100644 --- a/android/examples/subpasses/CMakeLists.txt +++ b/android/examples/subpasses/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME subpasses) diff --git a/android/examples/terraintessellation/CMakeLists.txt b/android/examples/terraintessellation/CMakeLists.txt index c19af6ab..ad3a0bf6 100644 --- a/android/examples/terraintessellation/CMakeLists.txt +++ b/android/examples/terraintessellation/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME terraintessellation) diff --git a/android/examples/tessellation/CMakeLists.txt b/android/examples/tessellation/CMakeLists.txt index 1ef1208c..0de786e5 100644 --- a/android/examples/tessellation/CMakeLists.txt +++ b/android/examples/tessellation/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME tessellation) diff --git a/android/examples/textoverlay/CMakeLists.txt b/android/examples/textoverlay/CMakeLists.txt index a7a5e766..8f8f962a 100644 --- a/android/examples/textoverlay/CMakeLists.txt +++ b/android/examples/textoverlay/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME textoverlay) diff --git a/android/examples/texture/CMakeLists.txt b/android/examples/texture/CMakeLists.txt index 1e428f83..a743d972 100644 --- a/android/examples/texture/CMakeLists.txt +++ b/android/examples/texture/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME texture) diff --git a/android/examples/texture3d/CMakeLists.txt b/android/examples/texture3d/CMakeLists.txt index a00291b6..86a9a06f 100644 --- a/android/examples/texture3d/CMakeLists.txt +++ b/android/examples/texture3d/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME texture3d) diff --git a/android/examples/texturearray/CMakeLists.txt b/android/examples/texturearray/CMakeLists.txt index b1363101..f1932575 100644 --- a/android/examples/texturearray/CMakeLists.txt +++ b/android/examples/texturearray/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME texturearray) diff --git a/android/examples/texturecubemap/CMakeLists.txt b/android/examples/texturecubemap/CMakeLists.txt index a28fd331..02f574e3 100644 --- a/android/examples/texturecubemap/CMakeLists.txt +++ b/android/examples/texturecubemap/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME texturecubemap) diff --git a/android/examples/texturecubemaparray/CMakeLists.txt b/android/examples/texturecubemaparray/CMakeLists.txt index ec701064..24ca68e0 100644 --- a/android/examples/texturecubemaparray/CMakeLists.txt +++ b/android/examples/texturecubemaparray/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME texturecubemaparray) diff --git a/android/examples/texturemipmapgen/CMakeLists.txt b/android/examples/texturemipmapgen/CMakeLists.txt index e2484913..8a56121b 100644 --- a/android/examples/texturemipmapgen/CMakeLists.txt +++ b/android/examples/texturemipmapgen/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME texturemipmapgen) diff --git a/android/examples/texturesparseresidency/CMakeLists.txt b/android/examples/texturesparseresidency/CMakeLists.txt index 06b20524..9f5d6571 100644 --- a/android/examples/texturesparseresidency/CMakeLists.txt +++ b/android/examples/texturesparseresidency/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME texturesparseresidency) diff --git a/android/examples/timelinesemaphore/CMakeLists.txt b/android/examples/timelinesemaphore/CMakeLists.txt index 1e3a28cb..2d2bd833 100644 --- a/android/examples/timelinesemaphore/CMakeLists.txt +++ b/android/examples/timelinesemaphore/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME timelinesemaphore) diff --git a/android/examples/triangle/CMakeLists.txt b/android/examples/triangle/CMakeLists.txt index 6c032828..13727990 100644 --- a/android/examples/triangle/CMakeLists.txt +++ b/android/examples/triangle/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME triangle) diff --git a/android/examples/trianglevulkan13/CMakeLists.txt b/android/examples/trianglevulkan13/CMakeLists.txt index 3c736366..e2b2f44e 100644 --- a/android/examples/trianglevulkan13/CMakeLists.txt +++ b/android/examples/trianglevulkan13/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME trianglevulkan13) diff --git a/android/examples/variablerateshading/CMakeLists.txt b/android/examples/variablerateshading/CMakeLists.txt index 3960661d..c6536178 100644 --- a/android/examples/variablerateshading/CMakeLists.txt +++ b/android/examples/variablerateshading/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME variablerateshading) diff --git a/android/examples/vertexattributes/CMakeLists.txt b/android/examples/vertexattributes/CMakeLists.txt index 8ddd2e72..ff8e61bb 100644 --- a/android/examples/vertexattributes/CMakeLists.txt +++ b/android/examples/vertexattributes/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME vertexattributes) diff --git a/android/examples/viewportarray/CMakeLists.txt b/android/examples/viewportarray/CMakeLists.txt index 5b0ea747..bf64ad1f 100644 --- a/android/examples/viewportarray/CMakeLists.txt +++ b/android/examples/viewportarray/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME viewportarray) diff --git a/android/examples/vulkanscene/CMakeLists.txt b/android/examples/vulkanscene/CMakeLists.txt index 364beffb..9a166313 100644 --- a/android/examples/vulkanscene/CMakeLists.txt +++ b/android/examples/vulkanscene/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR) + + set(NAME vulkanscene) diff --git a/base/CMakeLists.txt b/base/CMakeLists.txt index 1f0099e4..90112062 100644 --- a/base/CMakeLists.txt +++ b/base/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (c) 2016-2025, Sascha Willems +# SPDX-License-Identifier: MIT + file(GLOB BASE_SRC "*.cpp" "*.hpp" "*.h" "../external/imgui/*.cpp") file(GLOB BASE_HEADERS "*.hpp" "*.h")