diff options
author | Daniel Zaoui <daniel.zaoui@samsung.com> | 2014-04-14 13:54:02 +0300 |
---|---|---|
committer | Daniel Zaoui <daniel.zaoui@samsung.com> | 2014-04-14 13:55:26 +0300 |
commit | e4ab76c39765891eca54a67a4d5b880498671c05 (patch) | |
tree | c6819fd4bb724b89f10afe115ef21417e8fbd77a /cmakeconfig | |
parent | 02a5a6bfea50e722bbb71b9cd813d32e453517ae (diff) | |
download | efl-e4ab76c39765891eca54a67a4d5b880498671c05.tar.gz |
Eolian: add support for cmake
Now with the file :-)
Diffstat (limited to 'cmakeconfig')
-rw-r--r-- | cmakeconfig/EolianConfig.cmake.in | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/cmakeconfig/EolianConfig.cmake.in b/cmakeconfig/EolianConfig.cmake.in new file mode 100644 index 0000000000..8ab886b03a --- /dev/null +++ b/cmakeconfig/EolianConfig.cmake.in @@ -0,0 +1,32 @@ +# - Try to find eolian +# Once done this will define +# EOLIAN_FOUND - System has eolian +# EOLIAN_INCLUDE_DIRS - The eolian include directories +# EOLIAN_LIBRARIES - The libraries needed to use eolian +# EOLIAN_DEFINITIONS - Compiler switches required for using eolian + +set(MY_PKG eolian) + +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_LIBEOLIAN ${_QUIET} ${MY_PKG}) + +find_library(EOLIAN_LIBRARY + NAMES ${PC_LIBEOLIAN_LIBRARIES} + HINTS ${PC_LIBEOLIAN_LIBDIR} ${PC_LIBEOLIAN_LIBRARY_DIRS} ) + +set(EOLIAN_DEFINITIONS ${PC_LIBEOLIAN_CFLAGS_OTHER}) +set(EOLIAN_LIBRARIES ${EOLIAN_LIBRARY}) +set(EOLIAN_INCLUDE_DIRS ${PC_LIBEOLIAN_INCLUDE_DIRS}) + +include(FindPackageHandleStandardArgs) +# handle the QUIETLY and REQUIRED arguments and set EOLIAN_FOUND to TRUE +# if all listed variables are TRUE +find_package_handle_standard_args(${MY_PKG} DEFAULT_MSG + EOLIAN_LIBRARIES EOLIAN_INCLUDE_DIRS) + +mark_as_advanced(EOLIAN_INCLUDE_DIRS EOLIAN_LIBRARY EOLIAN_LIBRARIES EOLIAN_DEFINITIONS) + |