blob: 194f9191b00d7c49305786e3e329cd56fed7a3b4 (
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 ${FIO_ROOT_DIR})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(fio DEFAULT_MSG FIO_INCLUDE_DIR)
mark_as_advanced(FIO_INCLUDE_DIR)
|