1
0
Fork 0
forked from lthn/blockchain
blockchain/contrib/db/CMakeLists.txt

8 lines
307 B
Text
Raw Normal View History

2018-12-27 18:50:45 +03:00
add_subdirectory(liblmdb)
if(MSVC)
target_compile_options(lmdb PRIVATE /wd4996 /wd4503 /wd4345 /wd4267 /wd4244 /wd4146 /wd4333 /wd4172)
else()
2019-02-16 01:44:59 +00:00
# Warnings as used by LMDB itself (LMDB_0.9.23)
target_compile_options(lmdb PRIVATE -Wall -Wno-unused-parameter -Wbad-function-cast -Wuninitialized)
2018-12-27 18:50:45 +03:00
endif()