-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
CMakeLists.txt
97 lines (80 loc) · 2.38 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
cmake_minimum_required(VERSION 3.16)
set(PROJECT_VERSION "6.2.80")
project(systemsettings VERSION ${PROJECT_VERSION})
set(PROJECT_DEP_VERSION "6.2.0")
set(QT_MIN_VERSION "6.7.0")
set(KF6_MIN_VERSION "6.5.0")
set(KDE_COMPILERSETTINGS_LEVEL "5.82")
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(ECM ${KF6_MIN_VERSION} REQUIRED NO_MODULE)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} )
include(KDEInstallDirs)
include(KDECMakeSettings)
include(KDECompilerSettings NO_POLICY_SCOPE)
include(KDEClangFormat)
include(GenerateExportHeader)
include(ECMFindQmlModule)
include(ECMQmlModule)
include(ECMQtDeclareLoggingCategory)
include(ECMDeprecationSettings)
include(KDEGitCommitHooks)
ecm_set_disabled_deprecation_versions(
QT 6.8.1
KF 6.9.0
)
add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
add_definitions(-DQT_USE_QSTRINGBUILDER)
add_definitions(-DQT_NO_CAST_FROM_ASCII)
add_definitions(-DQT_NO_CAST_TO_ASCII)
find_package(Qt6 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
Widgets Quick Qml QuickWidgets
)
find_package(KF6 ${KF6_MIN_VERSION} REQUIRED COMPONENTS
Auth
Crash
ItemViews
ItemModels
KCMUtils
I18n
KIO
Service
IconThemes
WidgetsAddons
WindowSystem
XmlGui
DBusAddons
Config
GuiAddons # UrlHanlder handles help:/ urls
Kirigami
JobWidgets
Runner
OPTIONAL_COMPONENTS
DocTools
QUIET
)
find_package(PlasmaActivities ${PROJECT_DEP_VERSION} REQUIRED)
add_library(systemsettings_debug STATIC)
target_link_libraries(systemsettings_debug Qt::Core)
ecm_qt_declare_logging_category(systemsettings_debug
HEADER systemsettings_app_debug.h
IDENTIFIER SYSTEMSETTINGS_APP_LOG
CATEGORY_NAME org.kde.systemsettings.app
DESCRIPTION "systemsettings"
EXPORT SYSTEMSETTINGS
)
add_subdirectory(app)
add_subdirectory(categories)
if(KF6DocTools_FOUND)
add_subdirectory(doc)
kdoctools_install(po)
endif()
add_subdirectory(runner)
add_subdirectory(appiumtests)
ecm_qt_install_logging_categories(EXPORT SYSTEMSETTINGS FILE systemsettings.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR})
ki18n_install(po)
# add clang-format target for all our real source files
file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h)
kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES})
kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)