File: EinaConfig.cmake.in

package info (click to toggle)
efl 1.21.1-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 261,264 kB
  • sloc: ansic: 1,026,744; cpp: 43,352; cs: 14,773; sh: 5,539; makefile: 3,347; objc: 1,518; pascal: 431; python: 322; xml: 182; sed: 16
file content (32 lines) | stat: -rw-r--r-- 1,108 bytes parent folder | download | duplicates (7)
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 eina
# Once done this will define
#  EINA_FOUND - System has eina
#  EINA_INCLUDE_DIRS - The eina include directories
#  EINA_LIBRARIES - The libraries needed to use eina
#  EINA_DEFINITIONS - Compiler switches required for using eina

set(MY_PKG eina)

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

find_library(EINA_LIBRARY
             NAMES ${PC_LIBEINA_LIBRARIES}
             HINTS ${PC_LIBEINA_LIBDIR} ${PC_LIBEINA_LIBRARY_DIRS} )

set(EINA_DEFINITIONS ${PC_LIBEINA_CFLAGS_OTHER})
set(EINA_LIBRARIES ${EINA_LIBRARY})
set(EINA_INCLUDE_DIRS ${PC_LIBEINA_INCLUDE_DIRS})

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

mark_as_advanced(EINA_INCLUDE_DIRS EINA_LIBRARY EINA_LIBRARIES EINA_DEFINITIONS)