Files
RedBear-OS/local/recipes/kde/kf6-knotifications/source/CMakeLists.txt
T
2026-04-15 12:57:45 +01:00

166 lines
5.6 KiB
CMake

cmake_minimum_required(VERSION 3.16)
set(KF_VERSION "6.10.0") # handled by release scripts
set(KF_DEP_VERSION "6.10.0") # handled by release scripts
project(KNotifications VERSION ${KF_VERSION})
# ECM setup
include(FeatureSummary)
find_package(ECM 6.10.0 NO_MODULE)
set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules")
feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
include(KDEInstallDirs)
include(KDECMakeSettings)
include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
include(KDEGitCommitHooks)
include(GenerateExportHeader)
include(ECMSetupVersion)
include(ECMGenerateHeaders)
include(ECMQtDeclareLoggingCategory)
include(ECMPoQmTools)
include(ECMAddQch)
include(ECMGenerateExportHeader)
include(ECMDeprecationSettings)
#include(ECMQmlModule)
include(CMakeDependentOption)
set(EXCLUDE_DEPRECATED_BEFORE_AND_AT 0 CACHE STRING "Control the range of deprecated API excluded from the build [default=0].")
option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF)
add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)")
set(knotifications_version_header "${CMAKE_CURRENT_BINARY_DIR}/src/knotifications_version.h")
ecm_setup_version(PROJECT
VARIABLE_PREFIX KNOTIFICATIONS
VERSION_HEADER "${knotifications_version_header}"
PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF6NotificationsConfigVersion.cmake"
SOVERSION 6)
# Dependencies
set(REQUIRED_QT_VERSION 6.6.0)
set(CMAKE_AUTORCC TRUE)
find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Gui)
if (ANDROID)
find_package(Gradle REQUIRED)
endif()
# shall we use DBus?
# enabled per default on Linux & BSD systems
set(USE_DBUS_DEFAULT OFF)
if(UNIX AND NOT APPLE AND NOT ANDROID AND NOT HAIKU)
set(USE_DBUS_DEFAULT ON)
endif()
option(USE_DBUS "Build components using DBus" ${USE_DBUS_DEFAULT})
if(USE_DBUS)
find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED DBus)
set(HAVE_DBUS TRUE)
add_definitions(-DHAVE_DBUS)
endif()
find_package(Qt6 ${REQUIRED_QT_VERSION} QUIET OPTIONAL_COMPONENTS Qml)
if (WIN32)
find_package(LibSnoreToast)
find_package(Qt6Network REQUIRED)
include(CMakeDependentOption)
cmake_dependent_option(WITH_SNORETOAST "for the Windows Toast Notifications" ON
"Qt6Network_FOUND;LibSnoreToast_FOUND" OFF
)
endif()
find_package(KF6Config ${KF_DEP_VERSION} REQUIRED)
########if (NOT APPLE AND NOT ANDROID AND NOT WIN32 AND NOT HAIKU OR (WIN32 AND NOT WITH_SNORETOAST))
######## find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED DBus)
######## find_package(Canberra REQUIRED)
######## set_package_properties(Canberra PROPERTIES
######## PURPOSE "Needed to build audio notification support")
######## if (TARGET Canberra::Canberra)
######## add_definitions(-DHAVE_CANBERRA)
######## endif()
########endif()
#######
######## For the Python bindings
#######find_package(Python3 3.10 COMPONENTS Interpreter Development)
#######find_package(Shiboken6)
#######find_package(PySide6)
#######
######## Python Bindings
#######cmake_dependent_option(BUILD_PYTHON_BINDINGS "Generate Python Bindings" ON "TARGET Shiboken6::libshiboken AND TARGET PySide6::pyside6" OFF)
#######add_feature_info(PYTHON_BINDINGS ${BUILD_PYTHON_BINDINGS} "Python bindings")
#######
######## FreeBSD CI is missing required packages
#######if (CMAKE_SYSTEM_NAME MATCHES FreeBSD)
####### set(BUILD_PYTHON_BINDINGS OFF)
#######endif()
######
######remove_definitions(-DQT_NO_CAST_FROM_BYTEARRAY)
######
#######ecm_install_po_files_as_qm(poqm)
######
######ecm_set_disabled_deprecation_versions(
###### QT 6.8
###### KF 6.8
######)
######
######add_subdirectory(src)
######if (BUILD_TESTING)
###### add_subdirectory(tests)
###### add_subdirectory(autotests)
###### add_subdirectory(examples)
######endif()
#####
#####if (BUILD_PYTHON_BINDINGS)
##### include(ECMGeneratePythonBindings)
##### add_subdirectory(python)
#####endif()
####
##### create a Config.cmake and a ConfigVersion.cmake file and install them
####set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF6Notifications")
####
####if (BUILD_QCH)
#### ecm_install_qch_export(
#### TARGETS KF6Notifications_QCH
#### FILE KF6NotificationsQchTargets.cmake
#### DESTINATION "${CMAKECONFIG_INSTALL_DIR}"
#### COMPONENT Devel
#### )
#### set(PACKAGE_INCLUDE_QCHTARGETS "include(\"\${CMAKE_CURRENT_LIST_DIR}/KF6NotificationsQchTargets.cmake\")")
####endif()
###
#include(CMakePackageConfigHelpers)
#
#configure_package_config_file(
# "${CMAKE_CURRENT_SOURCE_DIR}/KF6NotificationsConfig.cmake.in"
# "${CMAKE_CURRENT_BINARY_DIR}/KF6NotificationsConfig.cmake"
# PATH_VARS KDE_INSTALL_DBUSINTERFACEDIR
# INSTALL_DESTINATION ${CMAKECONFIG_INSTALL_DIR}
#)
#
#install(FILES
# "${CMAKE_CURRENT_BINARY_DIR}/KF6NotificationsConfig.cmake"
# "${CMAKE_CURRENT_BINARY_DIR}/KF6NotificationsConfigVersion.cmake"
# DESTINATION "${CMAKECONFIG_INSTALL_DIR}"
# COMPONENT Devel
#)
#
##install(EXPORT KF6NotificationsTargets DESTINATION "${CMAKECONFIG_INSTALL_DIR}" FILE KF6NotificationsTargets.cmake NAMESPACE KF6:: )
install(FILES
${knotifications_version_header}
DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF}/KNotifications COMPONENT Devel
)
###
###include(ECMFeatureSummary)
###ecm_feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
###
###kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)