diff options
| author | 2020-12-12 23:42:14 -0800 | |
|---|---|---|
| committer | 2020-12-12 23:42:14 -0800 | |
| commit | c96930fd9d09e49355225ecd538510b9db2a7158 (patch) | |
| tree | 886e3c6f8f7686761198ae3729c3a2f9238532e5 /src | |
| parent | common: Update CMakeList to fix build issue with Boost. (diff) | |
| parent | cmake: Fix generating CMake configs and linking with Boost (diff) | |
| download | yuzu-c96930fd9d09e49355225ecd538510b9db2a7158.tar.gz yuzu-c96930fd9d09e49355225ecd538510b9db2a7158.tar.xz yuzu-c96930fd9d09e49355225ecd538510b9db2a7158.zip | |
Merge pull request #5193 from lat9nq/fix-conan-boost
cmake: Fix generating CMake configs and linking with Boost
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 0981fe90b..0acf70a0a 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -210,7 +210,7 @@ endif() | |||
| 210 | 210 | ||
| 211 | create_target_directory_groups(common) | 211 | create_target_directory_groups(common) |
| 212 | 212 | ||
| 213 | target_link_libraries(common PUBLIC Boost::boost fmt::fmt microprofile) | 213 | target_link_libraries(common PUBLIC ${Boost_LIBRARIES} fmt::fmt microprofile) |
| 214 | target_link_libraries(common PRIVATE lz4::lz4 xbyak) | 214 | target_link_libraries(common PRIVATE lz4::lz4 xbyak) |
| 215 | if (MSVC) | 215 | if (MSVC) |
| 216 | target_link_libraries(common PRIVATE zstd::zstd) | 216 | target_link_libraries(common PRIVATE zstd::zstd) |