diff options
| author | 2022-09-08 12:27:31 -0700 | |
|---|---|---|
| committer | 2022-09-08 12:27:31 -0700 | |
| commit | 35ecd062ac4c05e1f224467e4471a759b21b73a9 (patch) | |
| tree | 6aff8cb550a5931864c9484e328c8b9d67cbf0f5 | |
| parent | Merge pull request #8837 from Morph1984/invalidate (diff) | |
| parent | CMake: explicitly link mbedcrypto for yuzu-room (diff) | |
| download | yuzu-35ecd062ac4c05e1f224467e4471a759b21b73a9.tar.gz yuzu-35ecd062ac4c05e1f224467e4471a759b21b73a9.tar.xz yuzu-35ecd062ac4c05e1f224467e4471a759b21b73a9.zip | |
Merge pull request #8867 from Docteh/gentoo
CMake: explicitly link mbedcrypto for yuzu-room
Diffstat (limited to '')
| -rw-r--r-- | src/dedicated_room/CMakeLists.txt | 2 |
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) |
| 17 | endif() | 17 | endif() |
| 18 | 18 | ||
| 19 | target_link_libraries(yuzu-room PRIVATE mbedtls) | 19 | target_link_libraries(yuzu-room PRIVATE mbedtls mbedcrypto) |
| 20 | if (MSVC) | 20 | if (MSVC) |
| 21 | target_link_libraries(yuzu-room PRIVATE getopt) | 21 | target_link_libraries(yuzu-room PRIVATE getopt) |
| 22 | endif() | 22 | endif() |