~ubuntu-branches/ubuntu/oneiric/kdeplasma-addons/oneiric

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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#   Copyright (C) 2007, 2008, 2009, 2010 Ivan Cukic <ivan.cukic(at)kde.org>
#
#   This program is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License version 2,
#   or (at your option) any later version, as published by the Free
#   Software Foundation
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details
#
#   You should have received a copy of the GNU General Public
#   License along with this program; if not, write to the
#   Free Software Foundation, Inc.,
#   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

# cmake macro to see if we have libLancelot

# LANCELOT_INCLUDE_DIR
# LANCELOT_FOUND
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.

if (LANCELOT_INCLUDE_DIR AND LANCELOT_LIBS)
   # Already in cache, be silent
   # This probably means that libLancelot is a part
   # of current build or that this script was
   # already invoked
   set(Lancelot_FIND_QUIETLY TRUE)
   message("Lancelot variables already set")
endif (LANCELOT_INCLUDE_DIR AND LANCELOT_LIBS)

if (NOT Lancelot_FIND_QUIETLY)
   message("Searching for Lancelot")

   find_path(LANCELOT_INCLUDE_DIR NAMES lancelot/lancelot.h
      PATHS
      ${KDE4_INCLUDE_DIR}
      ${INCLUDE_INSTALL_DIR}
   )

   find_library(LANCELOT_LIBS NAMES lancelot
      PATHS
      ${KDE4_LIB_DIR}
      ${LIB_INSTALL_DIR}
   )

   include(FindPackageHandleStandardArgs)
   FIND_PACKAGE_HANDLE_STANDARD_ARGS(Lancelot DEFAULT_MSG LANCELOT_LIBS LANCELOT_INCLUDE_DIR )

   mark_as_advanced(LANCELOT_INCLUDE_DIR LANCELOT_LIBS)
endif (NOT Lancelot_FIND_QUIETLY)

message("-- Found Lancelot include dir: ${LANCELOT_INCLUDE_DIR}")
message("-- Found Lancelot lib: ${LANCELOT_LIBS}")