diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/core/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/input_common/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/network/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/yuzu/CMakeLists.txt | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 9884a4a0b..56b247ac4 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -176,7 +176,7 @@ endif() | |||
| 176 | 176 | ||
| 177 | create_target_directory_groups(common) | 177 | create_target_directory_groups(common) |
| 178 | 178 | ||
| 179 | target_link_libraries(common PUBLIC ${Boost_LIBRARIES} fmt::fmt microprofile Threads::Threads) | 179 | target_link_libraries(common PUBLIC Boost::context Boost::headers fmt::fmt microprofile Threads::Threads) |
| 180 | target_link_libraries(common PRIVATE lz4::lz4 zstd::zstd LLVM::Demangle) | 180 | target_link_libraries(common PRIVATE lz4::lz4 zstd::zstd LLVM::Demangle) |
| 181 | 181 | ||
| 182 | if (YUZU_USE_PRECOMPILED_HEADERS) | 182 | if (YUZU_USE_PRECOMPILED_HEADERS) |
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 70fa1edf5..696a1f9ea 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -832,7 +832,7 @@ endif() | |||
| 832 | create_target_directory_groups(core) | 832 | create_target_directory_groups(core) |
| 833 | 833 | ||
| 834 | target_link_libraries(core PUBLIC common PRIVATE audio_core network video_core) | 834 | target_link_libraries(core PUBLIC common PRIVATE audio_core network video_core) |
| 835 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::opus) | 835 | target_link_libraries(core PUBLIC Boost::headers PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::opus) |
| 836 | if (MINGW) | 836 | if (MINGW) |
| 837 | target_link_libraries(core PRIVATE ${MSWSOCK_LIBRARY}) | 837 | target_link_libraries(core PRIVATE ${MSWSOCK_LIBRARY}) |
| 838 | endif() | 838 | endif() |
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index e3b627e4f..322c29065 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt | |||
| @@ -89,7 +89,7 @@ if (ENABLE_LIBUSB) | |||
| 89 | endif() | 89 | endif() |
| 90 | 90 | ||
| 91 | create_target_directory_groups(input_common) | 91 | create_target_directory_groups(input_common) |
| 92 | target_link_libraries(input_common PUBLIC core PRIVATE common Boost::boost) | 92 | target_link_libraries(input_common PUBLIC core PRIVATE common Boost::headers) |
| 93 | 93 | ||
| 94 | if (YUZU_USE_PRECOMPILED_HEADERS) | 94 | if (YUZU_USE_PRECOMPILED_HEADERS) |
| 95 | target_precompile_headers(input_common PRIVATE precompiled_headers.h) | 95 | target_precompile_headers(input_common PRIVATE precompiled_headers.h) |
diff --git a/src/network/CMakeLists.txt b/src/network/CMakeLists.txt index 1ab52da59..8e306219f 100644 --- a/src/network/CMakeLists.txt +++ b/src/network/CMakeLists.txt | |||
| @@ -19,7 +19,7 @@ add_library(network STATIC | |||
| 19 | 19 | ||
| 20 | create_target_directory_groups(network) | 20 | create_target_directory_groups(network) |
| 21 | 21 | ||
| 22 | target_link_libraries(network PRIVATE common enet::enet Boost::boost) | 22 | target_link_libraries(network PRIVATE common enet::enet Boost::headers) |
| 23 | if (ENABLE_WEB_SERVICE) | 23 | if (ENABLE_WEB_SERVICE) |
| 24 | target_compile_definitions(network PRIVATE -DENABLE_WEB_SERVICE) | 24 | target_compile_definitions(network PRIVATE -DENABLE_WEB_SERVICE) |
| 25 | target_link_libraries(network PRIVATE web_service) | 25 | target_link_libraries(network PRIVATE web_service) |
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index 06d982d9b..0f8c1e6a6 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt | |||
| @@ -314,7 +314,7 @@ endif() | |||
| 314 | create_target_directory_groups(yuzu) | 314 | create_target_directory_groups(yuzu) |
| 315 | 315 | ||
| 316 | target_link_libraries(yuzu PRIVATE common core input_common network video_core) | 316 | target_link_libraries(yuzu PRIVATE common core input_common network video_core) |
| 317 | target_link_libraries(yuzu PRIVATE Boost::boost glad Qt${QT_MAJOR_VERSION}::Widgets) | 317 | target_link_libraries(yuzu PRIVATE Boost::headers glad Qt${QT_MAJOR_VERSION}::Widgets) |
| 318 | target_link_libraries(yuzu PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) | 318 | target_link_libraries(yuzu PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) |
| 319 | 319 | ||
| 320 | target_link_libraries(yuzu PRIVATE Vulkan::Headers) | 320 | target_link_libraries(yuzu PRIVATE Vulkan::Headers) |