diff options
| author | 2020-06-19 21:59:59 -0400 | |
|---|---|---|
| committer | 2020-06-19 21:59:59 -0400 | |
| commit | 9c5ed4408d86e13cfdf9687a4a36c9fa68c7a7ac (patch) | |
| tree | abf3b92e01947cb80c9cf50ba15ee1a434c097ea /src/core | |
| parent | Merge pull request #4087 from MerryMage/macrojit-inline-Read (diff) | |
| parent | Add translation of "Current Boxcat Events" (diff) | |
| download | yuzu-9c5ed4408d86e13cfdf9687a4a36c9fa68c7a7ac.tar.gz yuzu-9c5ed4408d86e13cfdf9687a4a36c9fa68c7a7ac.tar.xz yuzu-9c5ed4408d86e13cfdf9687a4a36c9fa68c7a7ac.zip | |
Merge pull request #4113 from ogniK5377/boxcat-disable
Fix compilation when not building with boxcat
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 47418006b..cb9ced5c9 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -606,11 +606,11 @@ endif() | |||
| 606 | create_target_directory_groups(core) | 606 | create_target_directory_groups(core) |
| 607 | 607 | ||
| 608 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) | 608 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) |
| 609 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::Opus unicorn) | 609 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::Opus unicorn zip) |
| 610 | 610 | ||
| 611 | if (YUZU_ENABLE_BOXCAT) | 611 | if (YUZU_ENABLE_BOXCAT) |
| 612 | target_compile_definitions(core PRIVATE -DYUZU_ENABLE_BOXCAT) | 612 | target_compile_definitions(core PRIVATE -DYUZU_ENABLE_BOXCAT) |
| 613 | target_link_libraries(core PRIVATE httplib nlohmann_json::nlohmann_json zip) | 613 | target_link_libraries(core PRIVATE httplib nlohmann_json::nlohmann_json) |
| 614 | endif() | 614 | endif() |
| 615 | 615 | ||
| 616 | if (ENABLE_WEB_SERVICE) | 616 | if (ENABLE_WEB_SERVICE) |