7e10dcb1d4
The CMake configure process fails without include guards for these two find modules on QNX. Task-number: QTBUG-83202 Change-Id: I3cc589f98bc3b6b22c401421927ee6dab2663fb7 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
24 lines
649 B
CMake
24 lines
649 B
CMake
# 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")
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
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)
|
|
endif()
|