diff options
| author | 2020-04-16 18:17:18 -0400 | |
|---|---|---|
| committer | 2020-04-16 18:17:18 -0400 | |
| commit | 5a067eda843caa3631dcdc96adbb5f77b48af37c (patch) | |
| tree | cf7d730da6bd222d1244ec6e92b9aa4f391c7777 /src/core | |
| parent | Merge pull request #3659 from bunnei/time-calc-standard-user (diff) | |
| parent | externals: Use shared libraries if possible (diff) | |
| download | yuzu-5a067eda843caa3631dcdc96adbb5f77b48af37c.tar.gz yuzu-5a067eda843caa3631dcdc96adbb5f77b48af37c.tar.xz yuzu-5a067eda843caa3631dcdc96adbb5f77b48af37c.zip | |
Merge pull request #3675 from degasus/linux_shared_libraries
externals: Use shared libraries if possible
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/CMakeLists.txt | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 66497a386..c15d9f52f 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -591,11 +591,8 @@ target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) | |||
| 591 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt json-headers mbedtls opus unicorn) | 591 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt json-headers mbedtls opus unicorn) |
| 592 | 592 | ||
| 593 | if (YUZU_ENABLE_BOXCAT) | 593 | if (YUZU_ENABLE_BOXCAT) |
| 594 | get_directory_property(OPENSSL_LIBS | 594 | target_compile_definitions(core PRIVATE -DYUZU_ENABLE_BOXCAT) |
| 595 | DIRECTORY ${PROJECT_SOURCE_DIR}/externals/libressl | 595 | target_link_libraries(core PRIVATE httplib json-headers zip) |
| 596 | DEFINITION OPENSSL_LIBS) | ||
| 597 | target_compile_definitions(core PRIVATE -DCPPHTTPLIB_OPENSSL_SUPPORT -DYUZU_ENABLE_BOXCAT) | ||
| 598 | target_link_libraries(core PRIVATE httplib json-headers ${OPENSSL_LIBS} zip) | ||
| 599 | endif() | 596 | endif() |
| 600 | 597 | ||
| 601 | if (ENABLE_WEB_SERVICE) | 598 | if (ENABLE_WEB_SERVICE) |