summaryrefslogtreecommitdiff
path: root/cmakeconfig/EetConfig.cmake.in
blob: 479e1f06b8a182fdd566281383e93b3b1962aa01 (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
# - Try to find eet
# Once done this will define
#  EET_FOUND - System has eet
#  EET_INCLUDE_DIRS - The eet include directories
#  EET_LIBRARIES - The libraries needed to use eet
#  EET_DEFINITIONS - Compiler switches required for using eet

set(MY_PKG eet)

find_package(PkgConfig)
if ("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER "2.8.1")
   # "QUIET" was introduced in 2.8.2
   set(_QUIET QUIET)
endif ()
pkg_check_modules(PC_LIBEET ${_QUIET} ${MY_PKG})

find_library(EET_LIBRARY
             NAMES ${PC_LIBEET_LIBRARIES}
             HINTS ${PC_LIBEET_LIBDIR} ${PC_LIBEET_LIBRARY_DIRS} )

set(EET_DEFINITIONS ${PC_LIBEET_CFLAGS_OTHER})
set(EET_LIBRARIES ${EET_LIBRARY})
set(EET_INCLUDE_DIRS ${PC_LIBEET_INCLUDE_DIRS})

include(FindPackageHandleStandardArgs)
# handle the QUIETLY and REQUIRED arguments and set EET_FOUND to TRUE
# if all listed variables are TRUE
find_package_handle_standard_args(${MY_PKG} DEFAULT_MSG
   EET_LIBRARIES EET_INCLUDE_DIRS)

mark_as_advanced(EET_INCLUDE_DIRS EET_LIBRARY EET_LIBRARIES EET_DEFINITIONS)