diff options
| author | 2017-07-09 17:52:18 -0400 | |
|---|---|---|
| committer | 2017-07-11 18:33:41 -0400 | |
| commit | 33b012e86b846bbba1a42193cbaf34fa16b8fb93 (patch) | |
| tree | cb150fa04e758e0277aa5cc4c560226c0cf9b6ff /src/core/CMakeLists.txt | |
| parent | telemetry_session: Use TelemetryJson to submit real telemetry. (diff) | |
| download | yuzu-33b012e86b846bbba1a42193cbaf34fa16b8fb93.tar.gz yuzu-33b012e86b846bbba1a42193cbaf34fa16b8fb93.tar.xz yuzu-33b012e86b846bbba1a42193cbaf34fa16b8fb93.zip | |
web_service: Add CMake flag to enable.
Diffstat (limited to 'src/core/CMakeLists.txt')
| -rw-r--r-- | src/core/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 72233877b..b80efe192 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -386,5 +386,8 @@ set(HEADERS | |||
| 386 | 386 | ||
| 387 | create_directory_groups(${SRCS} ${HEADERS}) | 387 | create_directory_groups(${SRCS} ${HEADERS}) |
| 388 | add_library(core STATIC ${SRCS} ${HEADERS}) | 388 | add_library(core STATIC ${SRCS} ${HEADERS}) |
| 389 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core web_service) | 389 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) |
| 390 | target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp dynarmic fmt) | 390 | target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp dynarmic fmt) |
| 391 | if (ENABLE_WEB_SERVICE) | ||
| 392 | target_link_libraries(core PUBLIC json-headers web_service) | ||
| 393 | endif() | ||