[Release] Webkit2-efl-123997_0.11.46
[framework/web/webkit-efl.git] / Source / cmake / FindBundle.cmake
1 # - Try to find BUNDLE
2 # Once done, this will define
3 #
4 #  BUNDLE_FOUND - system has libbundle-0
5 #  BUNDLE_INCLUDE_DIRS - the libbundle-0 include directories
6 #  BUNDLE_LIBRARIES - link these to use libbundle-0
7
8 include(LibFindMacros)
9
10 # Use pkg-config to get hints about paths
11 libfind_pkg_check_modules(BUNDLE_PKGCONF bundle)
12
13 # Include dir
14 find_path(BUNDLE_INCLUDE_DIR
15   NAMES bundle.h
16   PATHS ${BUNDLE_PKGCONF_INCLUDE_DIRS}
17   PATH_SUFFIXES bundle
18 )
19
20 # Finally the library itself
21 find_library(BUNDLE_LIBRARY
22   NAMES bundle
23   PATHS ${BUNDLE_PKGCONF_LIBRARY_DIRS}
24 )
25
26 # Set the include dir variables and the libraries and let libfind_process do the rest.
27 # NOTE: Singular variables for this library, plural for libraries this this lib depends on.
28 set(BUNDLE_PROCESS_INCLUDES BUNDLE_INCLUDE_DIR BUNDLE_INCLUDE_DIRS)
29 set(BUNDLE_PROCESS_LIBS BUNDLE_LIBRARY BUNDLE_LIBRARIES)
30 libfind_process(BUNDLE)