mirror of
https://github.com/ceph/ceph
synced 2024-12-15 16:07:00 +00:00
1a76324981
* 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>
13 lines
319 B
CMake
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)
|