jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=18a7a95de371b4376b62e537ad536df116e19955
commit 18a7a95de371b4376b62e537ad536df116e19955 Author: Jean-Philippe Andre <[email protected]> Date: Mon Feb 17 11:28:33 2014 +0900 Emotion: Add cmake definition files Shameless copy & paste + sed from Evas stuff --- Makefile.am | 6 ++++++ cmakeconfig/EmotionConfig.cmake.in | 32 ++++++++++++++++++++++++++++++++ configure.ac | 2 ++ 3 files changed, 40 insertions(+) diff --git a/Makefile.am b/Makefile.am index b446af7..f4b6257 100644 --- a/Makefile.am +++ b/Makefile.am @@ -287,6 +287,12 @@ ethumbclient_cmakeconfig_DATA = \ cmakeconfig/EthumbClientConfig.cmake \ cmakeconfig/EthumbClientConfigVersion.cmake +emotion_cmakeconfigdir = $(libdir)/cmake/Emotion/ +emotion_cmakeconfig_DATA = \ +cmakeconfig/EmotionConfig.cmake \ +cmakeconfig/EmotionConfigVersion.cmake + + # D-Bus services: servicedir = @dbusservicedir@ diff --git a/cmakeconfig/EmotionConfig.cmake.in b/cmakeconfig/EmotionConfig.cmake.in new file mode 100644 index 0000000..1b47b21 --- /dev/null +++ b/cmakeconfig/EmotionConfig.cmake.in @@ -0,0 +1,32 @@ +# - Try to find emotion +# Once done this will define +# EMOTION_FOUND - System has emotion +# EMOTION_INCLUDE_DIRS - The emotion include directories +# EMOTION_LIBRARIES - The libraries needed to use emotion +# EMOTION_DEFINITIONS - Compiler switches required for using emotion + +set(MY_PKG emotion) + +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_LIBEMOTION ${_QUIET} ${MY_PKG}) + +find_library(EMOTION_LIBRARY + NAMES ${PC_LIBEMOTION_LIBRARIES} + HINTS ${PC_LIBEMOTION_LIBDIR} ${PC_LIBEMOTION_LIBRARY_DIRS} ) + +set(EMOTION_DEFINITIONS ${PC_LIBEMOTION_CFLAGS_OTHER}) +set(EMOTION_LIBRARIES ${EMOTION_LIBRARY}) +set(EMOTION_INCLUDE_DIRS ${PC_LIBEMOTION_INCLUDE_DIRS}) + +include(FindPackageHandleStandardArgs) +# handle the QUIETLY and REQUIRED arguments and set EMOTION_FOUND to TRUE +# if all listed variables are TRUE +find_package_handle_standard_args(${MY_PKG} DEFAULT_MSG + EMOTION_LIBRARIES EMOTION_INCLUDE_DIRS) + +mark_as_advanced(EMOTION_INCLUDE_DIRS EMOTION_LIBRARY EMOTION_LIBRARIES EMOTION_DEFINITIONS) + diff --git a/configure.ac b/configure.ac index 6b7f9a2..183381d 100644 --- a/configure.ac +++ b/configure.ac @@ -4014,6 +4014,8 @@ cmakeconfig/EthumbConfig.cmake cmakeconfig/EthumbConfigVersion.cmake:cmakeconfig/EFLConfigVersion.cmake.in cmakeconfig/EthumbClientConfig.cmake cmakeconfig/EthumbClientConfigVersion.cmake:cmakeconfig/EFLConfigVersion.cmake.in +cmakeconfig/EmotionConfig.cmake +cmakeconfig/EmotionConfigVersion.cmake:cmakeconfig/EFLConfigVersion.cmake.in ]) AC_OUTPUT --
