File: KF6NotificationsConfig.cmake.in

package info (click to toggle)
kf6-knotifications 6.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 22,072 kB
  • sloc: cpp: 3,183; java: 304; xml: 122; python: 24; sh: 14; makefile: 7; ansic: 4
file content (24 lines) | stat: -rw-r--r-- 569 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@PACKAGE_INIT@

include(CMakeFindDependencyMacro)
find_dependency(Qt6Gui @REQUIRED_QT_VERSION@)
if (@HAVE_DBUS@)
    find_dependency(Qt6DBus @REQUIRED_QT_VERSION@)
endif()

if (NOT @BUILD_SHARED_LIBS@) 
    find_dependency(KF6Config "@KF_DEP_VERSION@")

    if (@WITH_SNORETOAST@)
        find_dependency(LibSnoreToast)
        find_dependency(Qt6Network @REQUIRED_QT_VERSION@)
    endif()

    if (@Canberra_FOUND@)
        find_dependency(Canberra)
    endif()

endif()

include("${CMAKE_CURRENT_LIST_DIR}/KF6NotificationsTargets.cmake")
@PACKAGE_INCLUDE_QCHTARGETS@