Summary: Added cmake config files for Eio Test Plan: install it and test it with a app with needs eio Reviewers: cedric, tasn Reviewed By: tasn Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2079devs/avilog/callbacks_by_hashed_events
parent
3dff8b0a43
commit
a950371b10
3 changed files with 32 additions and 0 deletions
@ -0,0 +1,25 @@ |
||||
# trys to find eio |
||||
# EIO_INCLUDE_DIRS eio include directories |
||||
# EIO_LIBRARIES dependencys of eio |
||||
# EIO_DEFINITIONS compiler stuff to use it |
||||
set(MY_PKG eet) |
||||
|
||||
find_package(PkgConfig) |
||||
if ("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER "2.8.2") |
||||
set(_QUIET QUIET) |
||||
endif () |
||||
pkg_check_modules(PC_LIBEIO ${_QUIET} ${MY_PKG}) |
||||
|
||||
find_library(EIO_LIBRARY |
||||
NAMES ${PC_LIBEIO_LIBRARIES} |
||||
HINTS ${PC_LIBEIO_LIBDIR} ${PC_LIBEIO_LIBRARY_DIRS} ) |
||||
|
||||
set(EIO_DEFINITIONS ${PC_LIBEIO_CLAGS_OTHER}) |
||||
set(EIO_LIBRARIES ${EIO_LIBRARY}) |
||||
set(EIO_INCLUDE_DIRS ${PC_LIBEIO_INCLUDE_DIRS}) |
||||
|
||||
include(FindPackageHandleStandardArgs) |
||||
find_package_handle_standard_args(${MY_PKG} DEFAULT_MSG |
||||
EIO_LIBRARIES EIO_INCLUDE_DIRS) |
||||
|
||||
mark_as_advanced(EIO_INCLUDE_DIRS EIO_LIBRARY EIO_LIBRARIES EIO_DEFINITIONS) |
Loading…
Reference in new issue