mirror of
https://github.com/ceph/ceph
synced 2024-12-19 01:46:00 +00:00
ed00c25a6e
to pick up the change to FTBFS with C++ engine. Signed-off-by: Kefu Chai <kchai@redhat.com>
16 lines
676 B
CMake
16 lines
676 B
CMake
function(build_fio)
|
|
# we use an external project and copy the sources to bin directory to ensure
|
|
# that object files are built outside of the source tree.
|
|
include(ExternalProject)
|
|
ExternalProject_Add(fio_ext
|
|
DOWNLOAD_DIR ${CMAKE_BINARY_DIR}/src/
|
|
UPDATE_COMMAND "" # this disables rebuild on each run
|
|
GIT_REPOSITORY "https://github.com/axboe/fio.git"
|
|
GIT_TAG "bf0b7e75c1ccca4026c8880ed8a76fc7ef85f2f3"
|
|
SOURCE_DIR ${CMAKE_BINARY_DIR}/src/fio
|
|
BUILD_IN_SOURCE 1
|
|
CONFIGURE_COMMAND <SOURCE_DIR>/configure
|
|
BUILD_COMMAND $(MAKE) fio EXTFLAGS=-Wno-format-truncation
|
|
INSTALL_COMMAND cp <BINARY_DIR>/fio ${CMAKE_BINARY_DIR}/bin)
|
|
endfunction()
|