summaryrefslogtreecommitdiffstats
path: root/cmake/Findxapian.cmake
blob: 33726cf83cc629dc7583ca0a9669d9b6af18438e (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
38
39
40
41
42
# Find xapian search engine library
#
#  XAPIAN_FOUND - system has Xapian
#  XAPIAN_INCLUDE_DIR - the Xapian include directory
#  XAPIAN_LIBRARIES - the libraries needed to use Xapian
#
# Copyright © 2010 Harald Sitter <apachelogger@ubuntu.com>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.

if(XAPIAN_INCLUDE_DIR AND XAPIAN_LIBRARIES)
    # Already in cache, be silent
    set(xapian_FIND_QUIETLY TRUE)
endif(XAPIAN_INCLUDE_DIR AND XAPIAN_LIBRARIES)

FIND_PATH(XAPIAN_INCLUDE_DIR xapian/version.h)

FIND_LIBRARY(XAPIAN_LIBRARIES NAMES xapian)

IF(XAPIAN_INCLUDE_DIR AND XAPIAN_LIBRARIES)
   SET(XAPIAN_FOUND TRUE)
ELSE(XAPIAN_INCLUDE_DIR AND XAPIAN_LIBRARIES)
   SET(XAPIAN_FOUND FALSE)
ENDIF(XAPIAN_INCLUDE_DIR AND XAPIAN_LIBRARIES)

IF(XAPIAN_FOUND)
   IF(NOT xapian_FIND_QUIETLY)
      MESSAGE(STATUS "Found xapian: ${XAPIAN_LIBRARIES}")
   ENDIF(NOT xapian_FIND_QUIETLY)
ELSE(XAPIAN_FOUND)
   IF(xapian_FIND_REQUIRED)
      MESSAGE(FATAL_ERROR "Could not find xapian")
   ENDIF(xapian_FIND_REQUIRED)
   IF(NOT xapian_FIND_QUIETLY)
      MESSAGE(STATUS "Could not find xapian")
   ENDIF(NOT xapian_FIND_QUIETLY)
ENDIF(XAPIAN_FOUND)

# show the XAPIAN_INCLUDE_DIR and XAPIAN_LIBRARIES variables only in the advanced view
MARK_AS_ADVANCED(XAPIAN_INCLUDE_DIR XAPIAN_LIBRARIES)