From e71cc7443ff93e00bb34ce01bbd3440531b542ed Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Tue, 29 Nov 2016 15:54:21 +0800 Subject: update cmake files --- CMakeLists.txt | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index d681ddf..feff90f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -74,13 +74,15 @@ if (DB_FOUND) SET (HAVE_BERKELEY_DB 1) endif (DB_FOUND) -# DBM: Kyoto Cabinet -find_package(KyotoCabinet) -if (KyotoCabinet_FOUND) - include_directories ( ${KyotoCabinet_INCLUDE_PATH} ) - SET (LIBS ${LIBS} ${KyotoCabinet_LIBRARY}) - SET (HAVE_KYOTO_CABINET 1) -endif (KyotoCabinet_FOUND) +if (NOT HAVE_BERKELEY_DB) + # DBM: Kyoto Cabinet + find_package(KyotoCabinet) + if (KyotoCabinet_FOUND) + include_directories ( ${KyotoCabinet_INCLUDE_PATH} ) + SET (LIBS ${LIBS} ${KyotoCabinet_LIBRARY}) + SET (HAVE_KYOTO_CABINET 1) + endif (KyotoCabinet_FOUND) +endif (NOT HAVE_BERKELEY_DB) ######## Windows -- cgit