mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
7 lines
229 B
CMake
7 lines
229 B
CMake
find_path(LIBAIO_INCLUDE_DIRS NAMES libaio.h)
|
|
find_library(LIBAIO_LIBRARIES NAMES aio)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(
|
|
LIBAIO DEFAULT_MSG
|
|
LIBAIO_LIBRARIES LIBAIO_INCLUDE_DIRS)
|