diff options
author | bunnei <bunneidev@gmail.com> | 2020-12-12 23:42:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-12 23:42:14 -0800 |
commit | c96930fd9d09e49355225ecd538510b9db2a7158 (patch) | |
tree | 886e3c6f8f7686761198ae3729c3a2f9238532e5 /src | |
parent | 761206cf81b271f7f4dd6a167a120325b760dbf3 (diff) | |
parent | 292dd642cefb3717363e96974f055da9dc1cbf23 (diff) |
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() create_target_directory_groups(common) -target_link_libraries(common PUBLIC Boost::boost fmt::fmt microprofile) +target_link_libraries(common PUBLIC ${Boost_LIBRARIES} fmt::fmt microprofile) target_link_libraries(common PRIVATE lz4::lz4 xbyak) if (MSVC) target_link_libraries(common PRIVATE zstd::zstd) |