summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-09-08 21:27:31 +0200
committerGitHub <noreply@github.com>2022-09-08 21:27:31 +0200
commit35ecd062ac4c05e1f224467e4471a759b21b73a9 (patch)
tree6aff8cb550a5931864c9484e328c8b9d67cbf0f5
parentMerge pull request #8837 from Morph1984/invalidate (diff)
parentCMake: explicitly link mbedcrypto for yuzu-room (diff)
downloadyuzu-35ecd062ac4c05e1f224467e4471a759b21b73a9.tar
yuzu-35ecd062ac4c05e1f224467e4471a759b21b73a9.tar.gz
yuzu-35ecd062ac4c05e1f224467e4471a759b21b73a9.tar.bz2
yuzu-35ecd062ac4c05e1f224467e4471a759b21b73a9.tar.lz
yuzu-35ecd062ac4c05e1f224467e4471a759b21b73a9.tar.xz
yuzu-35ecd062ac4c05e1f224467e4471a759b21b73a9.tar.zst
yuzu-35ecd062ac4c05e1f224467e4471a759b21b73a9.zip
-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)
target_link_libraries(yuzu-room PRIVATE web_service)
endif()
-target_link_libraries(yuzu-room PRIVATE mbedtls)
+target_link_libraries(yuzu-room PRIVATE mbedtls mbedcrypto)
if (MSVC)
target_link_libraries(yuzu-room PRIVATE getopt)
endif()