blob: e68af609562ddbad9bd9701b40db2397e5871f58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# - Try to find Berkeley DB
# Once done this will define
#
# BERKELEY_DB_FOUND - system has Berkeley DB
# BERKELEY_DB_INCLUDE_DIR - the Berkeley DB include directory
# BERKELEY_DB_LIBRARIES - Link these to use Berkeley DB
# BERKELEY_DB_DEFINITIONS - Compiler switches required for using Berkeley DB
#
# Copyright (c) 2006, Alexander Dymo, <adymo@kdevelop.org>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
FIND_PATH(BERKELEY_DB_INCLUDE_DIR db.h
/usr/include/db4
/usr/local/include/db4
)
FIND_LIBRARY(BERKELEY_DB_LIBRARIES NAMES db )
IF(BERKELEY_DB_INCLUDE_DIR AND BERKELEY_DB_LIBRARIES)
SET(BERKELEY_DB_FOUND TRUE)
ENDIF(BERKELEY_DB_INCLUDE_DIR AND BERKELEY_DB_LIBRARIES)
IF(BERKELEY_DB_FOUND)
IF(NOT Berkeley_DB_FIND_QUIETLY)
MESSAGE(STATUS "Found Berkeley DB: ${BERKELEY_DB_LIBRARIES}")
ENDIF(NOT Berkeley_DB_FIND_QUIETLY)
ELSE(BERKELEY_DB_FOUND)
IF(Berkeley_DB_FIND_REQUIRED)
MESSAGE(FATAL_ERROR "Could not find Berkeley DB >= 4.1")
ENDIF(Berkeley_DB_FIND_REQUIRED)
ENDIF(BERKELEY_DB_FOUND)
# show the BERKELEY_DB_INCLUDE_DIR and BERKELEY_DB_LIBRARIES variables only in the advanced view
MARK_AS_ADVANCED(BERKELEY_DB_INCLUDE_DIR BERKELEY_DB_LIBRARIES )
|