File tree 3 files changed +4
-9
lines changed
3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 21
21
strategy :
22
22
matrix :
23
23
os : [ ubuntu-latest, macos-latest ]
24
- cmake-version : [ '3.15 ', 'latest']
24
+ cmake-version : [ '3.22.1 ', 'latest']
25
25
steps :
26
26
- uses : actions/checkout@v4
27
27
- uses : lukka/get-cmake@latest
39
39
if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
40
40
strategy :
41
41
matrix :
42
- cmake-version : [ '3.15 ', 'latest']
42
+ cmake-version : [ '3.22.1 ', 'latest']
43
43
steps :
44
44
- uses : actions/checkout@v4
45
45
- uses : lukka/get-cmake@latest
Original file line number Diff line number Diff line change 5
5
#
6
6
# SPDX-License-Identifier: Apache-2.0
7
7
# ~~~
8
- cmake_minimum_required (VERSION 3.15 )
8
+ cmake_minimum_required (VERSION 3.22.1 )
9
9
10
10
# NOTE: Parsing the version like this is suboptimal but neccessary due to our release process:
11
11
# https://github.com/KhronosGroup/Vulkan-Headers/pull/346
@@ -72,11 +72,6 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.28" AND VULKAN_HEADERS_ENABLE_MODULE
72
72
target_link_libraries (Vulkan-Module PUBLIC Vulkan-Headers)
73
73
endif ()
74
74
75
- if (CMAKE_VERSION VERSION_LESS "3.21" )
76
- # https://cmake.org/cmake/help/latest/variable/PROJECT_IS_TOP_LEVEL.html
77
- string (COMPARE EQUAL ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR} PROJECT_IS_TOP_LEVEL)
78
- endif ()
79
-
80
75
option (VULKAN_HEADERS_ENABLE_TESTS "Test Vulkan-Headers" ${PROJECT_IS_TOP_LEVEL} )
81
76
option (VULKAN_HEADERS_ENABLE_INSTALL "Install Vulkan-Headers" ${PROJECT_IS_TOP_LEVEL} )
82
77
Original file line number Diff line number Diff line change 5
5
#
6
6
# SPDX-License-Identifier: Apache-2.0
7
7
# ~~~
8
- cmake_minimum_required (VERSION 3.14.2 )
8
+ cmake_minimum_required (VERSION 3.22.1 )
9
9
10
10
project (API LANGUAGES C)
11
11
You can’t perform that action at this time.
0 commit comments