diff options
author | mj-xmr <mjxmr@protonmail.com> | 2021-05-14 14:18:16 +0200 |
---|---|---|
committer | mj-xmr <mjxmr@protonmail.com> | 2021-05-14 14:18:16 +0200 |
commit | a4a154b0e2b9030e744d4686b77f68e0c9696903 (patch) | |
tree | 92014441eb96055cad8b7b4c1e6b27e7f2fb7155 /external | |
parent | Merge pull request #7697 (diff) | |
download | monero-a4a154b0e2b9030e744d4686b77f68e0c9696903.tar.xz |
CMake: glob missing headers for easylogging
Diffstat (limited to 'external')
-rw-r--r-- | external/easylogging++/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/external/easylogging++/CMakeLists.txt b/external/easylogging++/CMakeLists.txt index 28c2945b1..9aa4c08bc 100644 --- a/external/easylogging++/CMakeLists.txt +++ b/external/easylogging++/CMakeLists.txt @@ -36,8 +36,12 @@ monero_enable_coverage() find_package(Threads) find_package(Backtrace) +monero_find_all_headers(EASYLOGGING_HEADERS "${CMAKE_CURRENT_SOURCE_DIR}") + add_library(easylogging - easylogging++.cc) + easylogging++.cc + ${EASYLOGGING_HEADERS} + ) include_directories("${CMAKE_CURRENT_SOURCE_DIR}") include_directories("${CMAKE_CURRENT_BINARY_DIR}") |