2022-07-05 13:26:52 +02:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
2022-08-19 15:21:34 +02:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-07-05 13:26:52 +02:00
|
|
|
|
2018-11-05 14:49:53 +01:00
|
|
|
# Find the PPS library
|
|
|
|
|
|
|
|
# Will make the target PPS::PPS available when found.
|
2020-08-18 16:13:22 +02:00
|
|
|
if(TARGET PPS::PPS)
|
|
|
|
set(PPS_FOUND TRUE)
|
|
|
|
return()
|
|
|
|
endif()
|
2018-11-05 14:49:53 +01:00
|
|
|
|
|
|
|
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)
|
2023-06-02 16:35:22 +02:00
|
|
|
add_library(PPS::PPS INTERFACE IMPORTED)
|
|
|
|
target_link_libraries(PPS::PPS INTERFACE "${PPS_LIBRARY}")
|
|
|
|
target_include_directories(PPS::PPS INTERFACE "${PPS_INCLUDE_DIR}")
|
2018-11-05 14:49:53 +01:00
|
|
|
endif()
|