mdbx-cmake: rename MDBX_USE_VALGRIND option.

Change-Id: I985befb6c60e8a8c8db1b5d9dd085eb4645b038b
This commit is contained in:
Leonid Yuriev
2019-10-25 08:10:15 +03:00
parent b905dea2ee
commit 42f8154c39
3 changed files with 5 additions and 5 deletions

View File

@@ -34,9 +34,9 @@ else()
check_include_file(valgrind/memcheck.h HAVE_VALGRIND_MEMCHECK_H)
endif()
option(ENABLE_VALGRIND "Enable integration with valgrind, a memory analyzing tool" OFF)
if(ENABLE_VALGRIND AND NOT HAVE_VALGRIND_MEMCHECK_H)
message(FATAL_ERROR "ENABLE_VALGRIND option is set but valgrind/memcheck.h is not found")
option(MDBX_USE_VALGRIND "Enable integration with valgrind, a memory analyzing tool" OFF)
if(MDBX_USE_VALGRIND AND NOT HAVE_VALGRIND_MEMCHECK_H)
message(FATAL_ERROR "MDBX_USE_VALGRIND option is set but valgrind/memcheck.h is not found")
endif()
option(ENABLE_ASAN