summaryrefslogtreecommitdiff
path: root/cmakeconfig/EmileConfig.cmake.in
blob: 68c284cf3723b501a18c1793f947814d18ac2d46 (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 emile
# Once done this will define
#  EMILE_FOUND - System has emile
#  EMILE_INCLUDE_DIRS - The emile include directories
#  EMILE_LIBRARIES - The libraries needed to use emile
#  EMILE_DEFINITIONS - Compiler switches required for using emile

set(MY_PKG emile)

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_LIBEMILE ${_QUIET} ${MY_PKG})

find_library(EMILE_LIBRARY
             NAMES ${PC_LIBEMILE_LIBRARIES}
             HINTS ${PC_LIBEMILE_LIBDIR} ${PC_LIBEMILE_LIBRARY_DIRS} )

set(EMILE_DEFINITIONS ${PC_LIBEMILE_CFLAGS_OTHER})
set(EMILE_LIBRARIES ${EMILE_LIBRARY})
set(EMILE_INCLUDE_DIRS ${PC_LIBEMILE_INCLUDE_DIRS})

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

mark_as_advanced(EMILE_INCLUDE_DIRS EMILE_LIBRARY EMILE_LIBRARIES EMILE_DEFINITIONS)