aboutsummaryrefslogtreecommitdiff
path: root/external
diff options
context:
space:
mode:
authormj-xmr <mjxmr@protonmail.com>2021-05-14 14:18:16 +0200
committermj-xmr <mjxmr@protonmail.com>2021-05-14 14:18:16 +0200
commita4a154b0e2b9030e744d4686b77f68e0c9696903 (patch)
tree92014441eb96055cad8b7b4c1e6b27e7f2fb7155 /external
parentMerge pull request #7697 (diff)
downloadmonero-a4a154b0e2b9030e744d4686b77f68e0c9696903.tar.xz
CMake: glob missing headers for easylogging
Diffstat (limited to 'external')
-rw-r--r--external/easylogging++/CMakeLists.txt6
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}")