summaryrefslogtreecommitdiffstats
path: root/cmake/FindPPS.cmake
diff options
context:
space:
mode:
authorKai Köhne <kai.koehne@qt.io>2022-12-01 13:43:16 +0100
committerKai Köhne <kai.koehne@qt.io>2022-12-05 19:02:59 +0100
commitf5f5a29bbac86d31420be8058d4b96b210d8560e (patch)
tree2b6429972a1197a043ce8d6d161445a6f73a1da3 /cmake/FindPPS.cmake
parentd77ce33082516234fd7bbb5335401a1f3af8ca27 (diff)
CMake: Properly quote paths in FindPPS.cmake
PPS_LIBRARY and PPS_INCLUDE_DIR cannot be empty at this point (otherwise PPS_FOUND would be FALSE). But it's arguably good practice to puth paths in quotes. Task-number: QTBUG-108930 Pick-to: 6.4 Change-Id: I87128da50f37cd6aa1a66811261a05ceb8c3e790 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'cmake/FindPPS.cmake')
-rw-r--r--cmake/FindPPS.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/FindPPS.cmake b/cmake/FindPPS.cmake
index b6898526fa..6556091c11 100644
--- a/cmake/FindPPS.cmake
+++ b/cmake/FindPPS.cmake
@@ -19,8 +19,8 @@ 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})
+ target_link_libraries(__PPS INTERFACE "${PPS_LIBRARY}")
+ target_include_directories(__PPS INTERFACE "${PPS_INCLUDE_DIR}")
add_library(PPS::PPS ALIAS __PPS)
endif()