diff options
| author | 2018-10-15 21:33:32 -0400 | |
|---|---|---|
| committer | 2018-10-15 21:33:32 -0400 | |
| commit | 548958bcafa572fdfbb147b1bd590c02f9bb4b40 (patch) | |
| tree | 0e6b51ffb96eeaa0873b5f47994aaf0959925bc4 /src/core | |
| parent | Merge pull request #1487 from lioncash/maybe-unused (diff) | |
| parent | core/CMakeLists: Make all web_service-related libraries private (diff) | |
| download | yuzu-548958bcafa572fdfbb147b1bd590c02f9bb4b40.tar.gz yuzu-548958bcafa572fdfbb147b1bd590c02f9bb4b40.tar.xz yuzu-548958bcafa572fdfbb147b1bd590c02f9bb4b40.zip | |
Merge pull request #1473 from lioncash/cmake
web_service: Make linkage of web_service-related externals and the library private
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 4fddaafd1..78986deb5 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -400,8 +400,8 @@ create_target_directory_groups(core) | |||
| 400 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) | 400 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) |
| 401 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt lz4_static mbedtls opus unicorn open_source_archives) | 401 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt lz4_static mbedtls opus unicorn open_source_archives) |
| 402 | if (ENABLE_WEB_SERVICE) | 402 | if (ENABLE_WEB_SERVICE) |
| 403 | add_definitions(-DENABLE_WEB_SERVICE) | 403 | target_compile_definitions(core PRIVATE -DENABLE_WEB_SERVICE) |
| 404 | target_link_libraries(core PUBLIC json-headers web_service) | 404 | target_link_libraries(core PRIVATE web_service) |
| 405 | endif() | 405 | endif() |
| 406 | 406 | ||
| 407 | if (ARCHITECTURE_x86_64) | 407 | if (ARCHITECTURE_x86_64) |