You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Usage.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -826,14 +826,14 @@ Refer to the [CMake documentation](https://cmake.org/cmake/help/latest/manual/cm
826
826
CMake provides the [FindVulkan module](https://cmake.org/cmake/help/latest/module/FindVulkan.html), which may be used to source the Vulkan SDK and Vulkan headers on your system.
827
827
828
828
<details>
829
-
<summary>For CMake versions earlier than 4.3.0</summary>
829
+
<summary>For CMake versions earlier than 4.4.0</summary>
830
830
831
-
If you have CMake versions between 3.30 and 4.3, where the [`CXX_MODULE_STD`](https://cmake.org/cmake/help/v4.3/prop_tgt/CXX_MODULE_STD.html) variable is still experimental, then make sure to provide the following UUID to enable CMake's experimental support for the C++ standard library module.
831
+
If you have CMake versions between 3.30 and 4.4, where the [`CXX_MODULE_STD`](https://cmake.org/cmake/help/v4.4/prop_tgt/CXX_MODULE_STD.html) variable is still experimental, then make sure to provide the following UUID to enable CMake's experimental support for the C++ standard library module.
832
832
To find the precise value for your specific version, check out the correct release tag and look for `CMAKE_EXPERIMENTAL_CXX_IMPORT_STD` in [Help/dev/experimental.rst](https://gitlab.kitware.com/cmake/cmake/-/blob/master/Help/dev/experimental.rst).
This UUID variable may also be set before the `project()` call, or in a [CMake preset file](https://cmake.org/cmake/help/latest/manual/cmake-presets.7.html#configure-preset) in the `cacheVariables` key for a configure preset.
@@ -843,11 +843,13 @@ This UUID variable may also be set before the `project()` call, or in a [CMake p
843
843
A complete example `CMakeLists.txt` file for a project using the Vulkan-Hpp named module is provided below.
844
844
845
845
```cmake
846
-
cmake_minimum_required( VERSION 3.30...4.3 )
846
+
cmake_minimum_required( VERSION 3.30...4.4 )
847
847
848
848
# either set the experimental gate here or via CLI
0 commit comments