OpenBSD mbedtls
Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
parent
6283d94bdd
commit
d86a763a7a
1 changed files with 9 additions and 5 deletions
|
@ -493,21 +493,25 @@ else()
|
||||||
find_package(Boost 1.57.0 REQUIRED)
|
find_package(Boost 1.57.0 REQUIRED)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
find_package(MbedTLS 3 REQUIRED)
|
# OpenBSD does not package mbedtls3 (only 2)
|
||||||
|
if (PLATFORM_OPENBSD)
|
||||||
|
AddJsonPackage(mbedtls)
|
||||||
|
else()
|
||||||
|
find_package(MbedTLS 3 REQUIRED)
|
||||||
|
endif()
|
||||||
|
|
||||||
find_package(VulkanUtilityLibraries REQUIRED)
|
find_package(VulkanUtilityLibraries REQUIRED)
|
||||||
find_package(VulkanHeaders 1.3.274 REQUIRED)
|
find_package(VulkanHeaders 1.3.274 REQUIRED)
|
||||||
|
|
||||||
# freebsd doesn't have spirv-headers package
|
# FreeBSD does not package spirv-headers
|
||||||
# TODO: solaris, openbsd?
|
|
||||||
if (PLATFORM_FREEBSD)
|
if (PLATFORM_FREEBSD)
|
||||||
AddJsonPackage(spirv-headers)
|
AddJsonPackage(spirv-headers)
|
||||||
AddJsonPackage(spirv-tools)
|
|
||||||
else()
|
else()
|
||||||
find_package(SPIRV-Headers 1.3.274 REQUIRED)
|
find_package(SPIRV-Headers 1.3.274 REQUIRED)
|
||||||
find_package(SPIRV-Tools MODULE REQUIRED)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
find_package(SPIRV-Tools MODULE REQUIRED)
|
||||||
|
|
||||||
if (YUZU_TESTS)
|
if (YUZU_TESTS)
|
||||||
find_package(Catch2 3.0.1 REQUIRED)
|
find_package(Catch2 3.0.1 REQUIRED)
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue