diff options
author | Thomas Winget <tewinget@gmail.com> | 2015-03-16 03:12:54 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2015-03-16 04:17:53 -0400 |
commit | cade0da8f1e932a17886aa9893a580fa3e3289c7 (patch) | |
tree | bbb2c171f01b37e227754d648e29c93f15bb344b /external/CMakeLists.txt | |
parent | BerkeleyDB BlockchainDB impl copy/paste/modify (diff) | |
download | monero-cade0da8f1e932a17886aa9893a580fa3e3289c7.tar.xz |
CMake wiring, minor cleanup, minor test addition
Make Cmake things aware of BerkeleyDB and BlockchainBDB
Make the BlockchainDB unit tests aware of BlockchainBDB
Diffstat (limited to '')
-rw-r--r-- | external/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index f0d363e35..527c5b5a9 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -103,3 +103,8 @@ set(LMDB_STATIC ${LMDB_STATIC} PARENT_SCOPE) set(LMDB_INCLUDE ${LMDB_INCLUDE} PARENT_SCOPE) set(LMDB_LIBRARY ${LMDB_LIBRARY} PARENT_SCOPE) set(LMDB_LIBRARY_DIRS ${LMDB_LIBRARY_DIRS} PARENT_SCOPE) + +set(BDB_STATIC ${BDB_STATIC} PARENT_SCOPE) +set(BDB_INCLUDE ${BDB_INCLUDE} PARENT_SCOPE) +set(BDB_LIBRARY ${BDB_LIBRARY} PARENT_SCOPE) +set(BDB_LIBRARY_DIRS ${BDB_LIBRARY_DIRS} PARENT_SCOPE) |