From f5f5a29bbac86d31420be8058d4b96b210d8560e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20K=C3=B6hne?= Date: Thu, 1 Dec 2022 13:43:16 +0100 Subject: [PATCH] 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 --- cmake/FindPPS.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/FindPPS.cmake b/cmake/FindPPS.cmake index b6898526fa2..6556091c11e 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()