diff options
author | Qiaowei Ren <qiaowei.ren@intel.com> | 2018-03-01 14:38:11 +0800 |
---|---|---|
committer | Qiaowei Ren <qiaowei.ren@intel.com> | 2018-03-01 14:38:11 +0800 |
commit | 7da45d65be36d36b880cc55c5036e96c24b53f00 (patch) | |
tree | d4f944eb4f8f8de50a9a7584ffa408dc3a3185b2 /src/ceph/cmake/modules/Findbabeltrace.cmake | |
parent | 691462d09d0987b47e112d6ee8740375df3c51b2 (diff) |
remove ceph code
This patch removes initial ceph code, due to license issue.
Change-Id: I092d44f601cdf34aed92300fe13214925563081c
Signed-off-by: Qiaowei Ren <qiaowei.ren@intel.com>
Diffstat (limited to 'src/ceph/cmake/modules/Findbabeltrace.cmake')
-rw-r--r-- | src/ceph/cmake/modules/Findbabeltrace.cmake | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/ceph/cmake/modules/Findbabeltrace.cmake b/src/ceph/cmake/modules/Findbabeltrace.cmake deleted file mode 100644 index 6b29a24..0000000 --- a/src/ceph/cmake/modules/Findbabeltrace.cmake +++ /dev/null @@ -1,22 +0,0 @@ -# - Find Babeltrace -# This module defines the following variables: -# BABELTRACE_FOUND = Was Babeltrace found or not? -# BABELTRACE_EXECUTABLE = The path to lttng command -# BABELTRACE_LIBRARIES = The list of libraries to link to when using Babeltrace -# BABELTRACE_INCLUDE_DIR = The path to Babeltrace include directory -# - -find_path(BABELTRACE_INCLUDE_DIR - NAMES babeltrace/babeltrace.h babeltrace/ctf/events.h babeltrace/ctf/iterator.h) - -find_library(BABELTRACE_LIBRARY - NAMES babeltrace babeltrace-ctf) - -find_program(BABELTRACE_EXECUTABLE - NAMES babeltrace babeltrace-ctf) - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(babeltrace DEFAULT_MSG - BABELTRACE_INCLUDE_DIR BABELTRACE_LIBRARY) -set(BABELTRACE_LIBRARIES ${BABELTRACE_LIBRARY}) -mark_as_advanced(BABELTRACE_INCLUDE_DIR BABELTRACE_LIBRARY) |