Add missing cmake config for efl libs.

This commit is contained in:
Tom Hacohen 2014-09-22 16:08:21 +01:00
parent 8ebf5d49b2
commit c51dbe3a2c
3 changed files with 39 additions and 0 deletions

View File

@ -257,6 +257,11 @@ pkgconfig_DATA += pc/ecore-audio.pc pc/ecore-audio-cxx.pc
endif
# Cmake configs:
efl_cmakeconfigdir = $(libdir)/cmake/Efl/
efl_cmakeconfig_DATA = \
cmakeconfig/EflConfig.cmake \
cmakeconfig/EflConfigVersion.cmake
eina_cmakeconfigdir = $(libdir)/cmake/Eina/
eina_cmakeconfig_DATA = \
cmakeconfig/EinaConfig.cmake \

View File

@ -0,0 +1,32 @@
# - Try to find efl
# Once done this will define
# EFL_FOUND - System has efl
# EFL_INCLUDE_DIRS - The efl include directories
# EFL_LIBRARIES - The libraries needed to use efl
# EFL_DEFINITIONS - Compiler switches required for using efl
set(MY_PKG efl)
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_LIBEFL ${_QUIET} ${MY_PKG})
find_library(EFL_LIBRARY
NAMES ${PC_LIBEFL_LIBRARIES}
HINTS ${PC_LIBEFL_LIBDIR} ${PC_LIBEFL_LIBRARY_DIRS} )
set(EFL_DEFINITIONS ${PC_LIBEFL_CFLAGS_OTHER})
set(EFL_LIBRARIES ${EFL_LIBRARY})
set(EFL_INCLUDE_DIRS ${PC_LIBEFL_INCLUDE_DIRS})
include(FindPackageHandleStandardArgs)
# handle the QUIETLY and REQUIRED arguments and set EFL_FOUND to TRUE
# if all listed variables are TRUE
find_package_handle_standard_args(${MY_PKG} DEFAULT_MSG
EFL_LIBRARIES EFL_INCLUDE_DIRS)
mark_as_advanced(EFL_INCLUDE_DIRS EFL_LIBRARY EFL_LIBRARIES EFL_DEFINITIONS)

View File

@ -4480,6 +4480,8 @@ systemd-services/efreet.service
systemd-services/ethumb.service
$po_makefile_in
$po_makevars
cmakeconfig/EflConfig.cmake
cmakeconfig/EflConfigVersion.cmake:cmakeconfig/EFLConfigVersion.cmake.in
cmakeconfig/EinaConfig.cmake
cmakeconfig/EinaConfigVersion.cmake:cmakeconfig/EFLConfigVersion.cmake.in
cmakeconfig/EezeConfig.cmake