File: FindLIBRDMACM.cmake

package info (click to toggle)
rpma 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,040 kB
  • sloc: ansic: 27,313; sh: 1,805; perl: 1,148; makefile: 8
file content (20 lines) | stat: -rw-r--r-- 559 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2020, Intel Corporation
#

message(STATUS "Checking for module 'librdmacm' w/o PkgConfig")

find_library(LIBRDMACM_LIBRARY NAMES librdmacm.so librdmacm rdmacm)
set(LIBRDMACM_LIBRARIES ${LIBRDMACM_LIBRARY})

if(LIBRDMACM_LIBRARY)
	message(STATUS "  Found librdmacm w/o PkgConfig")
else()
	set(MSG_NOT_FOUND "librdmacm NOT found (set CMAKE_PREFIX_PATH to point the location)")
	if(LIBRDMACM_FIND_REQUIRED)
		message(FATAL_ERROR ${MSG_NOT_FOUND})
	else()
		message(WARNING ${MSG_NOT_FOUND})
	endif()
endif()