mirror of
https://github.com/facebookincubator/mvfst.git
synced 2025-04-18 17:24:03 +03:00
Reviewed By: lnicco Differential Revision: D33587012 fbshipit-source-id: 972eb440f0156c9c04aa6e8787561b18295c1a97
22 lines
551 B
CMake
22 lines
551 B
CMake
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
# - Try to find librt
|
|
# Once done, this will define
|
|
#
|
|
# LIBRT_FOUND - system has librt
|
|
# LIBRT_LIBRARIES - link these to use librt
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_library(LIBRT_LIBRARY rt
|
|
PATHS ${LIBRT_LIBRARYDIR})
|
|
|
|
find_package_handle_standard_args(librt DEFAULT_MSG LIBRT_LIBRARY)
|
|
|
|
mark_as_advanced(LIBRT_LIBRARY)
|
|
|
|
set(LIBRT_LIBRARIES ${LIBRT_LIBRARY})
|