blob: ec91ca5aaccb4bfd78610b4b9d85bd8dae05f43a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# - Find Fio
# Find the fio includes
#
# FIO_INCLUDE_DIR - where to find fio.h
# FIO_FOUND - True if fio is found.
find_path(FIO_INCLUDE_DIR NAMES fio.h HINTS ENV FIO_ROOT_DIR)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(fio DEFAULT_MSG FIO_INCLUDE_DIR)
mark_as_advanced(FIO_INCLUDE_DIR)
|