summaryrefslogtreecommitdiffstats
path: root/cmake/FindPPS.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindPPS.cmake')
-rw-r--r--cmake/FindPPS.cmake15
1 files changed, 10 insertions, 5 deletions
diff --git a/cmake/FindPPS.cmake b/cmake/FindPPS.cmake
index c3360fa82c..099019243c 100644
--- a/cmake/FindPPS.cmake
+++ b/cmake/FindPPS.cmake
@@ -1,6 +1,13 @@
+# 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")
@@ -11,9 +18,7 @@ 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)
+ add_library(PPS::PPS INTERFACE IMPORTED)
+ target_link_libraries(PPS::PPS INTERFACE "${PPS_LIBRARY}")
+ target_include_directories(PPS::PPS INTERFACE "${PPS_INCLUDE_DIR}")
endif()