[cmake] only pass jwt/httplib if needed
All checks were successful
eden-license / license-header (pull_request) Successful in 27s
All checks were successful
eden-license / license-header (pull_request) Successful in 27s
Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
parent
affab2a483
commit
0a2f8a7fce
1 changed files with 8 additions and 2 deletions
|
@ -619,8 +619,14 @@ add_subdirectory(externals)
|
|||
find_package(VulkanHeaders REQUIRED)
|
||||
find_package(VulkanUtilityLibraries REQUIRED)
|
||||
find_package(VulkanMemoryAllocator REQUIRED)
|
||||
find_package(httplib REQUIRED)
|
||||
find_package(cpp-jwt REQUIRED)
|
||||
|
||||
if (ENABLE_WEB_SERVICE)
|
||||
find_package(httplib REQUIRED)
|
||||
endif()
|
||||
|
||||
if (ENABLE_WEB_SERVICE OR ENABLE_QT_UPDATE_CHECKER)
|
||||
find_package(cpp-jwt REQUIRED)
|
||||
endif()
|
||||
|
||||
if (NOT YUZU_USE_BUNDLED_SDL2)
|
||||
find_package(SDL2 REQUIRED)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue