mirror of
https://github.com/ceph/ceph
synced 2024-12-12 14:39:05 +00:00
01a9f17825
Signed-off-by: Kefu Chai <kchai@redhat.com> Signed-off-by: wanjun.lp <wanjun.lp@alibaba-inc.com> Signed-off-by: Ziye Yang <optimistyzy@gmail.com>
24 lines
479 B
CMake
24 lines
479 B
CMake
# Try to find CUnit
|
|
#
|
|
# Once done, this will define
|
|
#
|
|
# CUNIT_FOUND
|
|
|
|
find_path(CUNIT_INCLUDE_DIR NAMES CUnit/CUnit.h)
|
|
|
|
find_library(CUNIT_LIBRARY NAMES
|
|
cunit
|
|
libcunit
|
|
cunitlib)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(CUnit
|
|
DEFAULT_MSG CUNIT_LIBRARY CUNIT_INCLUDE_DIR)
|
|
|
|
if(CUNIT_FOUND)
|
|
set(CUNIT_LIBRARIES ${CUNIT_LIBRARY})
|
|
set(CUNIT_INCLUDE_DIRS ${CUNIT_INCLUDE_DIR})
|
|
endif()
|
|
|
|
mark_as_advanced(CUNIT_INCLUDE_DIR CUNIT_LIBRARY)
|