summaryrefslogtreecommitdiffstats
path: root/cmake/FindPPS.cmake
diff options
context:
space:
mode:
authorKai Köhne <kai.koehne@qt.io>2023-06-02 16:35:22 +0200
committerKai Köhne <kai.koehne@qt.io>2023-06-06 15:33:41 +0000
commitb63bf9832959fbb9fb9b6f1546366e582d5c1f36 (patch)
tree09c6d93709ddae01e7da5a2c9fe1745e1a09127c /cmake/FindPPS.cmake
parentd6ce0bad67c6961dc87469db7ac81144a52e875f (diff)
CMake: Remove local __PPS target
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>
Diffstat (limited to 'cmake/FindPPS.cmake')
-rw-r--r--cmake/FindPPS.cmake8
1 files changed, 3 insertions, 5 deletions
diff --git a/cmake/FindPPS.cmake b/cmake/FindPPS.cmake
index 6556091c11..099019243c 100644
--- a/cmake/FindPPS.cmake
+++ b/cmake/FindPPS.cmake
@@ -18,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()