32df595275
Task-number: QTBUG-105718 Change-Id: I5d3ef70a31235868b9be6cb479b7621bf2a8ba39 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
27 lines
731 B
CMake
27 lines
731 B
CMake
# Copyright (C) 2022 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Find the PPS library
|
|
|
|
# Will make the target PPS::PPS available when found.
|
|
if(TARGET PPS::PPS)
|
|
set(PPS_FOUND TRUE)
|
|
return()
|
|
endif()
|
|
|
|
find_library(PPS_LIBRARY NAMES "pps")
|
|
find_path(PPS_INCLUDE_DIR NAMES "sys/pps.h" DOC "The PPS Include path")
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(PPS DEFAULT_MSG PPS_INCLUDE_DIR PPS_LIBRARY)
|
|
|
|
mark_as_advanced(PPS_INCLUDE_DIR PPS_LIBRARY)
|
|
|
|
if(PPS_FOUND)
|
|
add_library(__PPS INTERFACE IMPORTED)
|
|
target_link_libraries(__PPS INTERFACE ${PPS_LIBRARY})
|
|
target_include_directories(__PPS INTERFACE ${PPS_INCLUDE_DIR})
|
|
|
|
add_library(PPS::PPS ALIAS __PPS)
|
|
endif()
|