2023-01-12 00:07:02 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2018-03-17 17:52:45 +00:00
|
|
|
|
2020-10-15 01:26:04 +01:00
|
|
|
# KDE Release Service Version, managed by release script
|
2023-11-07 20:06:23 +00:00
|
|
|
set (RELEASE_SERVICE_VERSION_MAJOR "24")
|
2024-07-21 11:49:46 +01:00
|
|
|
set (RELEASE_SERVICE_VERSION_MINOR "11")
|
2024-01-11 20:31:35 +00:00
|
|
|
set (RELEASE_SERVICE_VERSION_MICRO "70")
|
2020-10-15 01:26:04 +01:00
|
|
|
set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}")
|
|
|
|
|
|
|
|
project(kdeconnect VERSION ${RELEASE_SERVICE_VERSION})
|
2021-03-08 20:25:47 +00:00
|
|
|
|
2024-10-06 22:40:39 +01:00
|
|
|
set(KF_MIN_VERSION "6.0.0")
|
2024-09-03 23:41:21 +01:00
|
|
|
set(QT_MIN_VERSION "6.7.0")
|
2019-07-22 23:28:02 +01:00
|
|
|
|
2024-09-19 20:25:49 +01:00
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
|
|
|
|
|
2023-07-21 13:04:19 +01:00
|
|
|
find_package(ECM ${KF_MIN_VERSION} REQUIRED NO_MODULE)
|
2019-06-12 22:48:12 +01:00
|
|
|
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake)
|
|
|
|
|
|
|
|
include(KDEInstallDirs)
|
|
|
|
include(KDECompilerSettings NO_POLICY_SCOPE)
|
|
|
|
include(KDECMakeSettings)
|
|
|
|
include(ECMAddTests)
|
|
|
|
include(ECMSetupVersion)
|
|
|
|
include(ECMInstallIcons)
|
2020-05-26 17:55:47 +01:00
|
|
|
include(ECMQtDeclareLoggingCategory)
|
2019-06-12 22:48:12 +01:00
|
|
|
include(FeatureSummary)
|
|
|
|
include(GenerateExportHeader)
|
2021-05-09 18:33:52 +01:00
|
|
|
include(ECMGenerateQmlTypes)
|
2022-09-10 22:23:52 +01:00
|
|
|
include(KDEClangFormat)
|
2022-09-10 22:25:08 +01:00
|
|
|
include(KDEGitCommitHooks)
|
2023-07-21 12:10:02 +01:00
|
|
|
include(ECMFindQmlModule)
|
2022-09-11 00:17:14 +01:00
|
|
|
include(ECMQmlModule)
|
2023-07-21 10:49:04 +01:00
|
|
|
include(ECMDeprecationSettings)
|
2018-09-06 17:23:11 +01:00
|
|
|
|
2019-06-12 22:48:12 +01:00
|
|
|
include(KDEConnectMacros.cmake)
|
|
|
|
|
2020-10-15 01:26:04 +01:00
|
|
|
ecm_setup_version(${RELEASE_SERVICE_VERSION}
|
2019-06-12 22:48:12 +01:00
|
|
|
VARIABLE_PREFIX KDECONNECT
|
|
|
|
VERSION_HEADER ${CMAKE_CURRENT_BINARY_DIR}/kdeconnect-version.h
|
|
|
|
)
|
2015-02-05 07:52:07 +00:00
|
|
|
|
2023-07-21 10:49:04 +01:00
|
|
|
ecm_set_disabled_deprecation_versions(
|
2024-04-21 16:45:08 +01:00
|
|
|
QT 6.6
|
2024-09-17 19:09:09 +01:00
|
|
|
KF 6.5
|
2023-07-21 10:49:04 +01:00
|
|
|
)
|
2023-04-29 14:55:49 +01:00
|
|
|
|
2020-07-30 09:53:44 +01:00
|
|
|
# Make the version header available by linking against kdeconnectversion
|
|
|
|
add_library(kdeconnectversion INTERFACE)
|
|
|
|
target_include_directories(kdeconnectversion INTERFACE ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
2023-12-28 16:37:31 +00:00
|
|
|
set_package_properties(KF6Kirigami2 PROPERTIES
|
2023-07-18 21:13:27 +01:00
|
|
|
DESCRIPTION "QtQuick plugins to build user interfaces based on KDE UX guidelines"
|
|
|
|
PURPOSE "Required for KDE Connect's QML-based GUI applications"
|
|
|
|
URL "https://www.kde.org/products/kirigami/"
|
|
|
|
TYPE RUNTIME
|
|
|
|
)
|
2020-01-16 17:11:10 +00:00
|
|
|
|
2023-12-28 16:37:31 +00:00
|
|
|
find_package(KF6KirigamiAddons 0.11 REQUIRED)
|
|
|
|
set_package_properties(KF6KirigamiAddons PROPERTIES
|
2023-09-13 15:45:15 +01:00
|
|
|
TYPE REQUIRED
|
|
|
|
PURPOSE "Required runtime dependency (all the modules are required)"
|
|
|
|
)
|
|
|
|
|
2023-07-19 18:08:03 +01:00
|
|
|
if(UNIX AND NOT APPLE)
|
|
|
|
option(WITH_X11 "Build with X11 support" ON)
|
|
|
|
option(WITH_PULSEAUDIO "Build with Pulseaudio support" ON)
|
|
|
|
else()
|
|
|
|
set(WITH_X11 OFF)
|
|
|
|
set(WITH_PULSEAUDIO OFF)
|
|
|
|
endif()
|
|
|
|
|
2023-07-18 21:13:27 +01:00
|
|
|
if(UNIX AND NOT APPLE)
|
2023-12-28 16:37:31 +00:00
|
|
|
find_package(KF6Package REQUIRED)
|
2023-07-19 18:08:03 +01:00
|
|
|
if (WITH_PULSEAUDIO)
|
2023-12-28 16:37:31 +00:00
|
|
|
find_package(KF6PulseAudioQt REQUIRED)
|
2023-07-18 21:13:27 +01:00
|
|
|
endif()
|
2023-07-19 18:08:03 +01:00
|
|
|
find_package(QtWaylandScanner REQUIRED)
|
2023-07-18 21:13:27 +01:00
|
|
|
find_package(Wayland 1.9 REQUIRED Client)
|
2023-12-28 16:37:31 +00:00
|
|
|
find_package(Qt6 REQUIRED COMPONENTS WaylandClient)
|
2023-07-18 21:13:27 +01:00
|
|
|
find_package(WaylandProtocols REQUIRED)
|
|
|
|
pkg_check_modules(XkbCommon IMPORTED_TARGET xkbcommon)
|
2023-08-13 20:43:59 +01:00
|
|
|
find_package(PkgConfig QUIET REQUIRED)
|
2024-01-07 10:42:23 +00:00
|
|
|
pkg_check_modules(DBus REQUIRED IMPORTED_TARGET dbus-1)
|
Build kdeconnect on sailfish and port some simple plugins
Summary:
Below is a lost of the commits, but, in summary
Port the build system for Sailfish, which means selectively building only the bits we need/can, and only against the KF5 libs that are available.
Allow to build on Qt 5.6
Switch from knotification to nemo notification (not complete!)
Add a very simple example sailfish app.
Note, there is still much missing functionality. Notifications dont work, pairing sort of works but not really, but when it is paired you can send a ping to the desktop client
Dont build kio for Sailfish
Port core build system
Port daemon buld system
Require CoreAddons on Sailfish
Port plugins build for sailfish and include the ping plugin for now
Final build changes for sailfish.
Disable tests and other not needed parts
Add includes for QCA
Fix build errors on sailfish
Get core/ to build on sailfish
Get interfaces/ to build on sailfish
Build daemon on sailfish
On sailfish, dont install the kcm file
Start port plugin to sailfish
Fixup installed files
Add sfos app
Hack declarative plugin to give a public interface
Build sfos app
Compile declarativeplugin into the sfos app for now
Redefine qAsConst for qt 5.6
Packaging fixes
Use official icon
Package .desktop
Reviewers: #kde_connect, apol, nicolasfella, albertvaka
Reviewed By: #kde_connect, apol, nicolasfella, albertvaka
Subscribers: kdeconnect, andyholmes, albertvaka, kossebau, mtijink, vonreth, apol, #kde_connect, nicolasfella
Tags: #kde_connect
Differential Revision: https://phabricator.kde.org/D10703
2018-08-02 20:10:59 +01:00
|
|
|
endif()
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2023-12-28 16:37:31 +00:00
|
|
|
if (NOT WIN32)
|
2023-08-16 12:51:44 +01:00
|
|
|
find_package(KF6StatusNotifierItem ${KF_MIN_VERSION} REQUIRED)
|
|
|
|
endif()
|
|
|
|
|
2023-07-18 21:13:27 +01:00
|
|
|
#ecm_find_qmlmodule(org.kde.people 1.0) FIXME This results in KPeople code being called which triggers DBus calls which breaks the Windows CI
|
|
|
|
ecm_find_qmlmodule(QtQuick.Particles 2.0)
|
|
|
|
|
2019-12-09 22:14:19 +00:00
|
|
|
add_definitions(-DQT_NO_URL_CAST_FROM_STRING -DQT_NO_KEYWORDS -DQT_NO_CAST_FROM_ASCII)
|
|
|
|
|
2024-10-06 22:40:39 +01:00
|
|
|
find_package(Qt6 ${QT_MIN_VERSION} REQUIRED COMPONENTS DBus Quick QuickWidgets QuickControls2 Network Multimedia)
|
2023-12-28 16:48:45 +00:00
|
|
|
find_package(KF6 ${KF_MIN_VERSION} REQUIRED COMPONENTS I18n ConfigWidgets DBusAddons IconThemes Notifications
|
2024-07-31 21:44:55 +01:00
|
|
|
KIO KCMUtils Service Solid Kirigami People WindowSystem GuiAddons DocTools Crash)
|
2015-03-01 20:17:46 +00:00
|
|
|
|
2021-06-15 13:36:03 +01:00
|
|
|
if (WIN32)
|
2021-06-16 12:39:55 +01:00
|
|
|
get_filename_component(WINDOWS_KITS_DIR
|
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows Kits\\Installed Roots;KitsRoot10]" ABSOLUTE)
|
|
|
|
file(READ "${WINDOWS_KITS_DIR}/SDKManifest.xml" SDK_MANIFEST)
|
|
|
|
string(REGEX MATCH "PlatformIdentity[^\n]*" PLATFORM_IDENTITY "${SDK_MANIFEST}" )
|
|
|
|
string(REGEX MATCH "[0-9][0-9][0-9][0-9][0-9]" WIN_SDK_VERSION "${PLATFORM_IDENTITY}" )
|
2021-06-15 13:36:03 +01:00
|
|
|
add_compile_definitions(WIN_SDK_VERSION=${WIN_SDK_VERSION})
|
|
|
|
endif()
|
|
|
|
|
2019-10-27 16:11:58 +00:00
|
|
|
add_subdirectory(core)
|
2020-01-06 19:28:36 +00:00
|
|
|
add_subdirectory(plugins)
|
|
|
|
add_subdirectory(interfaces)
|
2019-12-09 22:14:19 +00:00
|
|
|
|
2023-12-28 16:37:31 +00:00
|
|
|
find_package(KF6QQC2DesktopStyle ${KF_MIN_VERSION} REQUIRED)
|
|
|
|
set_package_properties(KF6QQC2DesktopStyle PROPERTIES TYPE RUNTIME)
|
2023-07-18 21:13:27 +01:00
|
|
|
|
|
|
|
add_subdirectory(icons)
|
|
|
|
add_subdirectory(data)
|
|
|
|
add_subdirectory(cli)
|
|
|
|
add_subdirectory(declarativeplugin)
|
|
|
|
|
|
|
|
add_subdirectory(kcm)
|
|
|
|
add_subdirectory(kcmplugin)
|
|
|
|
add_subdirectory(daemon)
|
|
|
|
add_subdirectory(app)
|
|
|
|
add_subdirectory(indicator)
|
|
|
|
add_subdirectory(urlhandler)
|
|
|
|
add_subdirectory(nautilus-extension)
|
|
|
|
add_subdirectory(fileitemactionplugin)
|
|
|
|
add_subdirectory(smsapp)
|
|
|
|
add_subdirectory(settings)
|
|
|
|
|
|
|
|
if(NOT WIN32 AND NOT APPLE)
|
|
|
|
add_subdirectory(kio)
|
2023-12-23 16:34:33 +00:00
|
|
|
add_subdirectory(plasmoid)
|
2019-12-09 22:14:19 +00:00
|
|
|
endif()
|
2020-01-17 00:31:53 +00:00
|
|
|
|
2023-07-19 18:08:03 +01:00
|
|
|
add_subdirectory(doc)
|
|
|
|
kdoctools_install(po)
|
|
|
|
|
2022-05-22 11:20:30 +01:00
|
|
|
ki18n_install(po)
|
2019-10-27 16:11:58 +00:00
|
|
|
|
2019-12-09 22:14:19 +00:00
|
|
|
if(BUILD_TESTING)
|
|
|
|
add_subdirectory(tests)
|
Build kdeconnect on sailfish and port some simple plugins
Summary:
Below is a lost of the commits, but, in summary
Port the build system for Sailfish, which means selectively building only the bits we need/can, and only against the KF5 libs that are available.
Allow to build on Qt 5.6
Switch from knotification to nemo notification (not complete!)
Add a very simple example sailfish app.
Note, there is still much missing functionality. Notifications dont work, pairing sort of works but not really, but when it is paired you can send a ping to the desktop client
Dont build kio for Sailfish
Port core build system
Port daemon buld system
Require CoreAddons on Sailfish
Port plugins build for sailfish and include the ping plugin for now
Final build changes for sailfish.
Disable tests and other not needed parts
Add includes for QCA
Fix build errors on sailfish
Get core/ to build on sailfish
Get interfaces/ to build on sailfish
Build daemon on sailfish
On sailfish, dont install the kcm file
Start port plugin to sailfish
Fixup installed files
Add sfos app
Hack declarative plugin to give a public interface
Build sfos app
Compile declarativeplugin into the sfos app for now
Redefine qAsConst for qt 5.6
Packaging fixes
Use official icon
Package .desktop
Reviewers: #kde_connect, apol, nicolasfella, albertvaka
Reviewed By: #kde_connect, apol, nicolasfella, albertvaka
Subscribers: kdeconnect, andyholmes, albertvaka, kossebau, mtijink, vonreth, apol, #kde_connect, nicolasfella
Tags: #kde_connect
Differential Revision: https://phabricator.kde.org/D10703
2018-08-02 20:10:59 +01:00
|
|
|
endif()
|
2018-03-25 19:40:59 +01:00
|
|
|
|
2020-05-26 17:55:47 +01:00
|
|
|
ecm_qt_install_logging_categories(EXPORT kdeconnect-kde FILE kdeconnect-kde.categories SORT DESTINATION "${KDE_INSTALL_LOGGINGCATEGORIESDIR}")
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h)
|
|
|
|
kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES})
|
|
|
|
|
2022-09-10 22:25:08 +01:00
|
|
|
kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)
|
|
|
|
|
2015-09-14 12:51:50 +01:00
|
|
|
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
|