Add missing cmake config for efl libs.
authorTom Hacohen <tom@stosb.com>
Mon, 22 Sep 2014 15:08:21 +0000 (16:08 +0100)
committerTom Hacohen <tom@stosb.com>
Mon, 22 Sep 2014 15:08:37 +0000 (16:08 +0100)
Makefile.am
cmakeconfig/EflConfig.cmake.in [new file with mode: 0644]
configure.ac

index 979ac6c..6ddb5ea 100644 (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 \
diff --git a/cmakeconfig/EflConfig.cmake.in b/cmakeconfig/EflConfig.cmake.in
new file mode 100644 (file)
index 0000000..8597474
--- /dev/null
@@ -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)
+
index a0f60c9..6946c0d 100644 (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