diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2024-02-02 09:09:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-02 09:09:02 -0500 |
commit | 32d38a5df65ee5a9131ec049f435db9df6051e4c (patch) | |
tree | 191c179d14a77f4a3765d1c8477a585182394bd4 | |
parent | 3ac46aeced2160909833be338ab3693d4afd7f45 (diff) | |
parent | c74b5f9ee64dc1109ff15f12abc389a8303c4c08 (diff) |
Merge pull request #12887 from abouvier/cmake-vulkan-headers
cmake: use vulkan-headers config file
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f4b64544f..d460f1f7d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -307,7 +307,7 @@ find_package(ZLIB 1.2 REQUIRED) find_package(zstd 1.5 REQUIRED) if (NOT YUZU_USE_EXTERNAL_VULKAN_HEADERS) - find_package(Vulkan 1.3.274 REQUIRED) + find_package(VulkanHeaders 1.3.274 REQUIRED) endif() if (NOT YUZU_USE_EXTERNAL_VULKAN_UTILITY_LIBRARIES) |