ceph/cmake/modules/Findfio.cmake
Casey Bodley 1a76324981 fio: generalize for other ObjectStores
* renamed target to fio_ceph_objectstore
* moved into src/test/fio subdirectory
* added to cmake build
* added support for DDIR_READ
* added required fio option 'conf' to load a ceph configuration file
* added multiple collections per job to simulate parallelism from pgs
* creates objects of the appropriate size on setup
* added support for multiple jobs that share an ObjectStore instance

Signed-off-by: Casey Bodley <cbodley@redhat.com>
2016-09-13 11:02:17 -04:00

13 lines
319 B
CMake

# - 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)