diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-04-18 02:14:04 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-04-18 02:14:04 -0500 |
commit | 669459797407afdcfce5c646749c7f6c33478657 (patch) | |
tree | 7c0a3a50cbe36597ad94f2a07c0c8b99dbf88ac0 /src/lmdb | |
parent | Merge pull request #7819 (diff) | |
parent | CMake: Add missing headers via monero_find_all_headers macro (diff) | |
download | monero-669459797407afdcfce5c646749c7f6c33478657.tar.xz |
Merge pull request #8207
4db6aed CMake: Add missing headers via monero_find_all_headers macro (mj-xmr)
Diffstat (limited to '')
-rw-r--r-- | src/lmdb/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lmdb/CMakeLists.txt b/src/lmdb/CMakeLists.txt index e0a3de147..a26c48ad5 100644 --- a/src/lmdb/CMakeLists.txt +++ b/src/lmdb/CMakeLists.txt @@ -27,7 +27,7 @@ # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. set(lmdb_sources database.cpp error.cpp table.cpp value_stream.cpp) -set(lmdb_headers database.h error.h key_stream.h table.h transaction.h util.h value_stream.h) +monero_find_all_headers(lmdb_headers "${CMAKE_CURRENT_SOURCE_DIR}") monero_add_library(lmdb_lib ${lmdb_sources} ${lmdb_headers}) target_link_libraries(lmdb_lib common ${LMDB_LIBRARY}) |