From: Kefu Chai Date: Wed, 20 Jul 2016 08:22:29 +0000 (+0800) Subject: cmake: remove unused Findfio.cmake X-Git-Tag: ses5-milestone5~345^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e8a16b7fda14b950a973685f80cfe7365a4f924d;p=ceph.git cmake: remove unused Findfio.cmake Signed-off-by: Kefu Chai --- diff --git a/cmake/modules/Findfio.cmake b/cmake/modules/Findfio.cmake deleted file mode 100644 index 7a40b77cd69c4..0000000000000 --- a/cmake/modules/Findfio.cmake +++ /dev/null @@ -1,29 +0,0 @@ -# - Find fio -# -# FIO_INCLUDE_DIR - where to find fio.h -# FIO_FOUND - True if found. - -find_path(FIO_INCLUDE_DIR fio.h NO_DEFAULT_PATH PATHS - /usr/include - /opt/local/include - /usr/local/include -) - -if (FIO_INCLUDE_DIR) - set(FIO_FOUND TRUE) -else () - set(FIO_FOUND FALSE) -endif () - -if (FIO_FOUND) - message(STATUS "Found fio: ${FIO_INCLUDE_DIR}") -else () - message(STATUS "Failed to find fio.h") - if (FIO_FIND_REQUIRED) - message(FATAL_ERROR "Missing required fio.h") - endif () -endif () - -mark_as_advanced( - FIO_INCLUDE_DIR -)