b63bf98329
Remove the local __PPS target and make PPS::PPS itself the imported target. This is not only simpler, but also hopefully resolves an issue with static builds, where PPS::PPS was not properly promoted to a global target, leading to linker errors. Fixes: QTBUG-108794 Pick-to: 6.5 6.6 Change-Id: Ia9334a27312ba9bfeec964f6bd6a82652e5f9d37 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
25 lines
705 B
CMake
25 lines
705 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::PPS INTERFACE IMPORTED)
|
|
target_link_libraries(PPS::PPS INTERFACE "${PPS_LIBRARY}")
|
|
target_include_directories(PPS::PPS INTERFACE "${PPS_INCLUDE_DIR}")
|
|
endif()
|