375831a3dc
This reduces the amount of warning messages when the pkg-config feature is disabled. Task-number: QTBUG-85276 Change-Id: I11a6dfb6273a1e48c47d1ef5c1a5f70ba990fbc0 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
8 lines
148 B
CMake
8 lines
148 B
CMake
find_package(PkgConfig QUIET)
|
|
|
|
pkg_check_modules(ATSPI2 atspi-2 IMPORTED_TARGET)
|
|
|
|
if (NOT TARGET PkgConfig::ATSPI2)
|
|
set(ATSPI2_FOUND 0)
|
|
endif()
|