diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-04-22 17:06:24 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2017-04-22 18:16:22 -0300 |
commit | caf0b209d50989b6c2a42c8cf3f7d1192ea1ce68 (patch) | |
tree | 3835b518bd3d3ce829b5a042fa416d27b5f65ab3 /src | |
parent | 224399958d680e281192366111fc938eddad6ef6 (diff) |
Build: Added support for boost 1.64
Build: Added 1.64 Boost version to FindBoost
(cherry-picked from commit 5233caf0920689c7796f4147e5b7506343d707bb)
Build: Fixed build with boost 1.64
(cherry-picked from commit a3dec5cb753410dba5c03c70343afd00b905e920)
Diffstat (limited to 'src')
-rw-r--r-- | src/common/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 82b74f13efb..626e1706098 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -61,6 +61,8 @@ target_include_directories(common ${CMAKE_CURRENT_BINARY_DIR}) target_link_libraries(common + PRIVATE + process PUBLIC boost fmt @@ -71,9 +73,7 @@ target_link_libraries(common openssl valgrind threads - jemalloc - PRIVATE - process) + jemalloc) add_dependencies(common revision_data.h) |