Warning, /frameworks/kguiaddons/KF5GuiAddonsConfig.cmake.in is written in an unsupported language. File is not indexed.

0001 @PACKAGE_INIT@
0002 
0003 # Any changes in this file will be overwritten by CMake.
0004 
0005 include(CMakeFindDependencyMacro)
0006 find_dependency(Qt@QT_MAJOR_VERSION@Gui @REQUIRED_QT_VERSION@)
0007 
0008 if (NOT @BUILD_SHARED_LIBS@)
0009     if (@WITH_X11@)
0010         find_dependency(X11)
0011         find_dependency(XCB COMPONENTS XCB)
0012 
0013         if (NOT TARGET Qt6::Gui)
0014             find_dependency(Qt5X11Extras @REQUIRED_QT_VERSION@)
0015         endif()
0016     endif()
0017     if (@WITH_WAYLAND@)
0018         find_dependency(Wayland REQUIRED Client)
0019         find_dependency(Qt@QT_MAJOR_VERSION@WaylandClient @REQUIRED_QT_VERSION@)
0020         find_dependency(QtWaylandScanner)
0021     endif()
0022 
0023     if (@WITH_DBUS@)
0024         find_dependency(Qt@QT_MAJOR_VERSION@DBus @REQUIRED_QT_VERSION@)
0025     endif()
0026 endif()
0027 
0028 include("${CMAKE_CURRENT_LIST_DIR}/KF5GuiAddonsTargets.cmake")
0029 @PACKAGE_INCLUDE_QCHTARGETS@