1
0
mirror of https://github.com/ceph/ceph synced 2025-04-01 23:02:17 +00:00

cmake: check libaio on linux before building SPDK

SPDK requires libaio on linux.

Signed-off-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
Kefu Chai 2017-11-20 02:09:35 +08:00
parent 57e792bcae
commit a11ab928f7

View File

@ -4,6 +4,9 @@ macro(build_spdk)
build_dpdk()
endif()
find_package(CUnit REQUIRED)
if(LINUX)
find_package(aio REQUIRED)
endif()
include(ExternalProject)
ExternalProject_Add(spdk-ext
DEPENDS dpdk-ext