diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-19 19:46:43 -0400 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-26 12:25:19 -0400 |
commit | 7b893c7963a57bf41f5dad7dd1709985971ce291 (patch) | |
tree | 5ea570f5de6969ea8e05f229ba34398b9db5e191 | |
parent | 45d29436b32bbee1bdf1344e3dc3db365dc42937 (diff) |
Common: Fix non-conan build
-rw-r--r-- | src/common/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index aacea0ab7..3cc17d0e9 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -187,6 +187,7 @@ if(ARCHITECTURE_x86_64) endif() create_target_directory_groups(common) +find_package(Boost 1.71 COMPONENTS context headers REQUIRED) -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 zstd::zstd xbyak) |