From 571215ef20d5c8f251a6a658986023507f6b7a7c Mon Sep 17 00:00:00 2001 From: Daniel Gryniewicz Date: Mon, 21 Sep 2015 11:59:30 -0400 Subject: [PATCH] CMake - fix check for AIO Signed-off-by: Daniel Gryniewicz --- cmake/modules/Findaio.cmake | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmake/modules/Findaio.cmake b/cmake/modules/Findaio.cmake index ae2e36d3e164b..da4ac11e071a3 100644 --- a/cmake/modules/Findaio.cmake +++ b/cmake/modules/Findaio.cmake @@ -43,3 +43,8 @@ if (AIO_INCLUDE AND AIO_LIBS) message(STATUS "${AIO_DIR_MESSAGE}") endif () endif () + +# handle the QUIETLY and REQUIRED arguments and set UUID_FOUND to TRUE if +# all listed variables are TRUE +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(aio DEFAULT_MSG AIO_LIBS AIO_INCLUDE) -- 2.39.5