diff options
author | vincent-michael <vincent_michael@gmx.de> | 2017-04-20 20:49:30 +0200 |
---|---|---|
committer | vincent-michael <vincent_michael@gmx.de> | 2017-04-20 20:49:30 +0200 |
commit | a3dec5cb753410dba5c03c70343afd00b905e920 (patch) | |
tree | 3da958af5fd5fb63dd52ab563fa23cc3a9f2ce60 | |
parent | 5233caf0920689c7796f4147e5b7506343d707bb (diff) |
Build: Fixed build with boost 1.64
-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) |