This commit is contained in:
linkmauve 2025-01-12 20:48:43 +09:00 committed by GitHub
commit 5411f4a187
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -72,7 +72,11 @@ find_package(Catch2 REQUIRED)
find_package(Tracy REQUIRED) find_package(Tracy REQUIRED)
find_package(xxHash REQUIRED) find_package(xxHash)
if (NOT xxHash_FOUND)
pkg_search_module(xxHash REQUIRED IMPORTED_TARGET xxHash libxxhash)
add_library(xxHash::xxhash ALIAS PkgConfig::xxHash)
endif()
find_package(Vulkan REQUIRED) find_package(Vulkan REQUIRED)