fe1a018d00
If the target exists or the find_package() call succeeds we still need to set _FOUND to 1. Change-Id: Ib2267c30580082dcc177ab21708a3bc5dbde974f Reviewed-by: Albert Astals Cid <albert.astals.cid@kdab.com> Reviewed-by: Qt CMake Build Bot
36 lines
862 B
CMake
36 lines
862 B
CMake
# DBus1 is buggy and breaks PKG_CONFIG environment.
|
|
# Work around that:-/
|
|
# See https://gitlab.freedesktop.org/dbus/dbus/issues/267 for more information
|
|
|
|
if(DEFINED ENV{PKG_CONFIG_DIR})
|
|
set(__qt_dbus_pcd "$ENV{PKG_CONFIG_DIR}")
|
|
endif()
|
|
if(DEFINED ENV{PKG_CONFIG_PATH})
|
|
set(__qt_dbus_pcp "$ENV{PKG_CONFIG_PATH}")
|
|
endif()
|
|
if(DEFINED ENV{PKG_CONFIG_LIBDIR})
|
|
set(__qt_dbus_pcl "$ENV{PKG_CONFIG_LIBDIR}")
|
|
endif()
|
|
|
|
find_package(DBus1)
|
|
|
|
if(DEFINED __qt_dbus_pcd)
|
|
set(ENV{PKG_CONFIG_DIR} "${__qt_dbus_pcd}")
|
|
else()
|
|
unset(ENV{PKG_CONFIG_DIR})
|
|
endif()
|
|
if(DEFINED __qt_dbus_pcp)
|
|
set(ENV{PKG_CONFIG_PATH} "${__qt_dbus_pcp}")
|
|
else()
|
|
unset(ENV{PKG_CONFIG_PATH})
|
|
endif()
|
|
if(DEFINED __qt_dbus_pcl)
|
|
set(ENV{PKG_CONFIG_LIBDIR} "${__qt_dbus_pcl}")
|
|
else()
|
|
unset(ENV{PKG_CONFIG_LIBDIR})
|
|
endif()
|
|
|
|
if(DBus1_FOUND)
|
|
set(WrapDBus1_FOUND 1)
|
|
endif()
|