summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-09-08 12:27:31 -0700
committerGitHub <noreply@github.com>2022-09-08 12:27:31 -0700
commit35ecd062ac4c05e1f224467e4471a759b21b73a9 (patch)
tree6aff8cb550a5931864c9484e328c8b9d67cbf0f5 /src
parent4ffbbc534884841f9a5536e57539bf3d1642af26 (diff)
parente78a623342ecab2d10fa4940d40c2c90d008b061 (diff)
Merge pull request #8867 from Docteh/gentoo
CMake: explicitly link mbedcrypto for yuzu-room
Diffstat (limited to 'src')
-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()