Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / cmake / modules / Findfio.cmake
1 # - Find Fio
2 # Find the fio includes
3 #
4 # FIO_INCLUDE_DIR - where to find fio.h
5 # FIO_FOUND - True if fio is found.
6
7 find_path(FIO_INCLUDE_DIR NAMES fio.h HINTS ${FIO_ROOT_DIR})
8
9 include(FindPackageHandleStandardArgs)
10 find_package_handle_standard_args(fio DEFAULT_MSG FIO_INCLUDE_DIR)
11
12 mark_as_advanced(FIO_INCLUDE_DIR)