summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Kyle Kienapfel2022-09-08 05:34:36 -0700
committerGravatar Kyle Kienapfel2022-09-08 05:52:28 -0700
commite78a623342ecab2d10fa4940d40c2c90d008b061 (patch)
tree6aff8cb550a5931864c9484e328c8b9d67cbf0f5
parentMerge pull request #8837 from Morph1984/invalidate (diff)
downloadyuzu-e78a623342ecab2d10fa4940d40c2c90d008b061.tar.gz
yuzu-e78a623342ecab2d10fa4940d40c2c90d008b061.tar.xz
yuzu-e78a623342ecab2d10fa4940d40c2c90d008b061.zip
CMake: explicitly link mbedcrypto for yuzu-room
Doesn't appear to effect anything regular, but in both Linux and Windows builds it looks like our project has all the libraries available for linking. If this feature is turned off, there is only one thing that quit working, when linking yuzu-room it couldn't find a function called mbedtls_base64_decode mbedtls is split into three libraries for some reason: mbedtls mbedx509 mbedcrypto mbedtls_base64_decode is in mbedcrypto
-rw-r--r--src/dedicated_room/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dedicated_room/CMakeLists.txt b/src/dedicated_room/CMakeLists.txt
index 737aedbe4..1efdbc1f7 100644
--- a/src/dedicated_room/CMakeLists.txt
+++ b/src/dedicated_room/CMakeLists.txt
@@ -16,7 +16,7 @@ if (ENABLE_WEB_SERVICE)
16 target_link_libraries(yuzu-room PRIVATE web_service) 16 target_link_libraries(yuzu-room PRIVATE web_service)
17endif() 17endif()
18 18
19target_link_libraries(yuzu-room PRIVATE mbedtls) 19target_link_libraries(yuzu-room PRIVATE mbedtls mbedcrypto)
20if (MSVC) 20if (MSVC)
21 target_link_libraries(yuzu-room PRIVATE getopt) 21 target_link_libraries(yuzu-room PRIVATE getopt)
22endif() 22endif()