summaryrefslogtreecommitdiffstats
path: root/cmake/modules/FindEpollShim.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/modules/FindEpollShim.cmake')
-rw-r--r--cmake/modules/FindEpollShim.cmake27
1 files changed, 27 insertions, 0 deletions
diff --git a/cmake/modules/FindEpollShim.cmake b/cmake/modules/FindEpollShim.cmake
new file mode 100644
index 0000000..61366d8
--- /dev/null
+++ b/cmake/modules/FindEpollShim.cmake
@@ -0,0 +1,27 @@
1# FindEpollShim
2# -------------
3# Finds the epoll-shim library
4#
5# This will define the following variables::
6#
7# EPOLLSHIM_FOUND - the system has epoll-shim
8# EPOLLSHIM_INCLUDE_DIR - the epoll-shim include directory
9# EPOLLSHIM_LIBRARY - the epoll-shim library
10
11if(PKG_CONFIG_FOUND)
12 pkg_check_modules(PC_EPOLLSHIM epoll-shim QUIET)
13endif()
14
15find_path(EPOLLSHIM_INCLUDE_DIR NAMES sys/epoll.h PATHS ${PC_EPOLLSHIM_INCLUDE_DIRS})
16find_library(EPOLLSHIM_LIBRARY NAMES epoll-shim PATHS ${PC_EPOLLSHIM_LIBDIR})
17
18include(FindPackageHandleStandardArgs)
19find_package_handle_standard_args(EpollShim
20 REQUIRED_VARS EPOLLSHIM_LIBRARY EPOLLSHIM_INCLUDE_DIR)
21
22if(EPOLLSHIM_FOUND)
23 set(EPOLLSHIM_INCLUDE_DIRS ${EPOLLSHIM_INCLUDE_DIR})
24 set(EPOLLSHIM_LIBRARIES ${EPOLLSHIM_LIBRARY})
25endif()
26
27mark_as_advanced(EPOLLSHIM_INCLUDE_DIR EPOLLSHIM_LIBRARY)