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>
This commit is contained in:
parent
d77ce33082
commit
f5f5a29bba
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user