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")
|
|
|
|
set (RELEASE_SERVICE_VERSION_MINOR "01")
|
2023-12-18 22:14:59 +00:00
|
|
|
set (RELEASE_SERVICE_VERSION_MICRO "85")
|
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
|
|
|
|
2023-07-21 13:04:19 +01:00
|
|
|
set(KF_MIN_VERSION "5.101.0")
|
2023-07-18 21:13:27 +01:00
|
|
|
set(QT_MIN_VERSION "5.15.2")
|
2019-07-22 23:28:02 +01:00
|
|
|
|
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-04-29 14:55:49 +01:00
|
|
|
if(QT_MAJOR_VERSION STREQUAL "6")
|
|
|
|
set(KIRIGAMI_ICON "icon.name")
|
|
|
|
set(KIRIGAMI_PAGE_ACTIONS "actions")
|
|
|
|
set(QTQUICK_FILEDIALOG_FOLDER "currentFolder")
|
|
|
|
else()
|
|
|
|
set(QTQUICK_DIALOGS_IMPORT_VERSION 1.0)
|
|
|
|
set(KIRIGAMI_ICON "icon")
|
|
|
|
set(KIRIGAMI_PAGE_ACTIONS "contextualActions")
|
|
|
|
set(QTQUICK_FILEDIALOG_FOLDER "folder")
|
|
|
|
endif()
|
|
|
|
|
2023-07-21 10:49:04 +01:00
|
|
|
ecm_set_disabled_deprecation_versions(
|
|
|
|
QT ${QT_MIN_VERSION}
|
2023-07-21 13:04:19 +01:00
|
|
|
KF ${KF_MIN_VERSION}
|
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-07-19 18:08:03 +01:00
|
|
|
set(KF5_REQUIRED_COMPONENTS I18n ConfigWidgets DBusAddons IconThemes Notifications KIO KCMUtils Service Solid Kirigami2 People WindowSystem GuiAddons DocTools)
|
2020-01-16 17:11:10 +00:00
|
|
|
|
2023-07-21 10:49:04 +01:00
|
|
|
set_package_properties(KF${QT_MAJOR_VERSION}Kirigami2 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-09-13 15:45:15 +01:00
|
|
|
find_package(KF${QT_MAJOR_VERSION}KirigamiAddons 0.11 REQUIRED)
|
|
|
|
set_package_properties(KF${QT_MAJOR_VERSION}KirigamiAddons PROPERTIES
|
|
|
|
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-04-15 11:57:52 +01:00
|
|
|
find_package(KF${QT_MAJOR_VERSION}Package REQUIRED)
|
2023-07-19 18:08:03 +01:00
|
|
|
if (WITH_PULSEAUDIO)
|
2023-07-20 10:57:21 +01:00
|
|
|
find_package(KF${QT_MAJOR_VERSION}PulseAudioQt 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)
|
|
|
|
find_package(Qt${QT_MAJOR_VERSION} REQUIRED COMPONENTS WaylandClient)
|
|
|
|
find_package(WaylandProtocols REQUIRED)
|
|
|
|
pkg_check_modules(XkbCommon IMPORTED_TARGET xkbcommon)
|
2023-08-13 20:43:59 +01:00
|
|
|
find_package(PkgConfig QUIET REQUIRED)
|
|
|
|
pkg_check_modules(DBus REQUIRED 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-07-18 21:13:27 +01:00
|
|
|
find_package(KF5PeopleVCard)
|
|
|
|
set_package_properties(KF5PeopleVCard PROPERTIES
|
|
|
|
PURPOSE "Read vcards from the file system"
|
|
|
|
URL "https://invent.kde.org/pim/kpeoplevcard"
|
|
|
|
TYPE RUNTIME
|
|
|
|
)
|
|
|
|
|
2023-08-16 12:51:44 +01:00
|
|
|
if (QT_MAJOR_VERSION STREQUAL "6" AND NOT WIN32)
|
|
|
|
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)
|
|
|
|
|
2022-10-29 15:51:41 +01:00
|
|
|
find_package(Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} REQUIRED COMPONENTS DBus Quick QuickControls2 Network Multimedia)
|
|
|
|
if (UNIX AND NOT APPLE AND QT_MAJOR_VERSION EQUAL "5")
|
2021-02-01 13:10:47 +00:00
|
|
|
find_package(Qt5 ${QT_MIN_VERSION} REQUIRED COMPONENTS X11Extras)
|
|
|
|
endif()
|
2023-07-21 13:04:19 +01:00
|
|
|
find_package(KF${QT_MAJOR_VERSION} ${KF_MIN_VERSION} REQUIRED COMPONENTS ${KF5_REQUIRED_COMPONENTS})
|
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-07-21 13:04:19 +01:00
|
|
|
find_package(KF${QT_MAJOR_VERSION}QQC2DesktopStyle ${KF_MIN_VERSION} REQUIRED)
|
2023-04-15 11:57:52 +01:00
|
|
|
set_package_properties(KF${QT_MAJOR_VERSION}QQC2DesktopStyle 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-11-30 23:41:36 +00:00
|
|
|
if(QT_MAJOR_VERSION STREQUAL "6")
|
|
|
|
add_subdirectory(plasmoid-kf6)
|
|
|
|
else()
|
|
|
|
add_subdirectory(plasmoid-kf5)
|
|
|
|
endif()
|
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)
|