Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KOrganizer
Commits
ac281f4c
Commit
ac281f4c
authored
Nov 04, 2021
by
Laurent Montel
😁
Browse files
Allow to show header in qtc6
parent
7b685bd2
Pipeline
#94083
passed with stage
in 12 minutes and 38 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
korgac/CMakeLists.txt
View file @
ac281f4c
...
...
@@ -37,6 +37,9 @@ target_sources(korgac PRIVATE
alarmdialog.cpp
alarmdockwindow.cpp
koalarmclient.cpp
alarmdialog.h
alarmdockwindow.h
koalarmclient.h
${
korgac_SRCS
}
)
...
...
src/CMakeLists.txt
View file @
ac281f4c
...
...
@@ -33,6 +33,9 @@ set(korganizer_SRCS
korganizer.cpp
koapp.cpp
plugininterface/korganizerplugininterface.cpp
korganizer.h
koapp.h
plugininterface/korganizerplugininterface.h
${
korganizer_common_SRCS
}
)
...
...
@@ -60,7 +63,7 @@ install(TARGETS
)
########### next target ###############
add_library
(
korganizer_kcm_static STATIC widgets/kitemiconcheckcombo.cpp prefs/kprefsdialog.cpp
${
korganizer_common_SRCS
}
)
add_library
(
korganizer_kcm_static STATIC widgets/kitemiconcheckcombo.cpp prefs/kprefsdialog.cpp
widgets/kitemiconcheckcombo.h prefs/kprefsdialog.h
${
korganizer_common_SRCS
}
)
target_link_libraries
(
korganizer_kcm_static
KF5::AkonadiCalendar
...
...
@@ -78,54 +81,54 @@ target_link_libraries(korganizer_kcm_static
KF5::WindowSystem
)
add_library
(
korganizer_configcolorsandfonts MODULE prefs/koprefsdialogcolorsandfonts.cpp
)
add_library
(
korganizer_configcolorsandfonts MODULE prefs/koprefsdialogcolorsandfonts.cpp
prefs/koprefsdialogcolorsandfonts.h
)
kcoreaddons_desktop_to_json
(
korganizer_kcm_static
"kcmconfigs/korganizer_configcolorsandfonts.desktop"
SERVICE_TYPES kcmodule.desktop
)
target_link_libraries
(
korganizer_configcolorsandfonts korganizer_kcm_static
)
install
(
TARGETS korganizer_configcolorsandfonts DESTINATION
${
KDE_INSTALL_PLUGINDIR
}
/pim/kcms/korganizer
)
add_library
(
korganizer_configdesignerfields MODULE prefs/koprefsdesignerfields.cpp kcmdesignerfields.cpp
)
add_library
(
korganizer_configdesignerfields MODULE prefs/koprefsdesignerfields.cpp kcmdesignerfields.cpp
prefs/koprefsdesignerfields.h kcmdesignerfields.h
)
kcoreaddons_desktop_to_json
(
korganizer_kcm_static
"kcmconfigs/korganizer_configdesignerfields.desktop"
SERVICE_TYPES kcmodule.desktop
)
target_link_libraries
(
korganizer_configdesignerfields korganizer_kcm_static
)
install
(
TARGETS korganizer_configdesignerfields DESTINATION
${
KDE_INSTALL_PLUGINDIR
}
/pim/kcms/korganizer
)
add_library
(
korganizer_configfreebusy MODULE prefs/koprefsdialoggroupwarescheduling.cpp
)
add_library
(
korganizer_configfreebusy MODULE
prefs/koprefsdialoggroupwarescheduling.h
prefs/koprefsdialoggroupwarescheduling.cpp
)
kcoreaddons_desktop_to_json
(
korganizer_kcm_static
"kcmconfigs/korganizer_configfreebusy.desktop"
SERVICE_TYPES kcmodule.desktop
)
target_link_libraries
(
korganizer_configfreebusy korganizer_kcm_static
)
install
(
TARGETS korganizer_configfreebusy DESTINATION
${
KDE_INSTALL_PLUGINDIR
}
/pim/kcms/korganizer
)
add_library
(
korganizer_configgroupscheduling MODULE prefs/koprefsdialogmain.cpp
)
add_library
(
korganizer_configgroupscheduling MODULE
prefs/koprefsdialogmain.h
prefs/koprefsdialogmain.cpp
)
kcoreaddons_desktop_to_json
(
korganizer_kcm_static
"kcmconfigs/korganizer_configgroupscheduling.desktop"
SERVICE_TYPES kcmodule.desktop
)
target_link_libraries
(
korganizer_configgroupscheduling korganizer_kcm_static
)
install
(
TARGETS korganizer_configgroupscheduling DESTINATION
${
KDE_INSTALL_PLUGINDIR
}
/pim/kcms/korganizer
)
add_library
(
korganizer_configmain MODULE prefs/koprefsdialoggroupscheduling.cpp
)
add_library
(
korganizer_configmain MODULE
prefs/koprefsdialoggroupscheduling.h
prefs/koprefsdialoggroupscheduling.cpp
)
kcoreaddons_desktop_to_json
(
korganizer_kcm_static
"kcmconfigs/korganizer_configmain.desktop"
SERVICE_TYPES kcmodule.desktop
)
target_link_libraries
(
korganizer_configmain korganizer_kcm_static
)
install
(
TARGETS korganizer_configmain DESTINATION
${
KDE_INSTALL_PLUGINDIR
}
/pim/kcms/korganizer
)
add_library
(
korganizer_configplugins MODULE prefs/koprefsdialogplugins.cpp
)
add_library
(
korganizer_configplugins MODULE prefs/koprefsdialogplugins.cpp
prefs/koprefsdialogplugins.h
)
kcoreaddons_desktop_to_json
(
korganizer_kcm_static
"kcmconfigs/korganizer_configplugins.desktop"
SERVICE_TYPES kcmodule.desktop
)
target_link_libraries
(
korganizer_configplugins korganizer_kcm_static
)
install
(
TARGETS korganizer_configplugins DESTINATION
${
KDE_INSTALL_PLUGINDIR
}
/pim/kcms/korganizer
)
add_library
(
korganizer_configtime MODULE prefs/koprefsdialogtime.cpp
)
add_library
(
korganizer_configtime MODULE prefs/koprefsdialogtime.cpp
prefs/koprefsdialogtime.h
)
kcoreaddons_desktop_to_json
(
korganizer_kcm_static
"kcmconfigs/korganizer_configtime.desktop"
SERVICE_TYPES kcmodule.desktop
)
target_link_libraries
(
korganizer_configtime korganizer_kcm_static
)
install
(
TARGETS korganizer_configtime DESTINATION
${
KDE_INSTALL_PLUGINDIR
}
/pim/kcms/korganizer
)
add_library
(
korganizer_configviews MODULE prefs/koprefsdialogviews.cpp
)
add_library
(
korganizer_configviews MODULE prefs/koprefsdialogviews.cpp
prefs/koprefsdialogviews.h
)
kcoreaddons_desktop_to_json
(
korganizer_kcm_static
"kcmconfigs/korganizer_configviews.desktop"
SERVICE_TYPES kcmodule.desktop
)
target_link_libraries
(
korganizer_configviews korganizer_kcm_static
)
install
(
TARGETS korganizer_configviews DESTINATION
${
KDE_INSTALL_PLUGINDIR
}
/pim/kcms/korganizer
)
add_library
(
korganizer_userfeedback MODULE prefs/koprefsuserfeedback.cpp
)
add_library
(
korganizer_userfeedback MODULE prefs/koprefsuserfeedback.cpp
prefs/koprefsuserfeedback.h
)
kcoreaddons_desktop_to_json
(
korganizer_kcm_static
"kcmconfigs/korganizer_userfeedback.desktop"
SERVICE_TYPES kcmodule.desktop
)
target_link_libraries
(
korganizer_userfeedback korganizer_kcm_static
${
korganizer_userfeedback_LIB
}
)
install
(
TARGETS korganizer_userfeedback DESTINATION
${
KDE_INSTALL_PLUGINDIR
}
/pim/kcms/korganizer
)
########### next target ###############
set
(
korganizerpart_PART_SRCS korganizer_part.cpp korganizer_debug.cpp
)
set
(
korganizerpart_PART_SRCS korganizer_part.cpp
korganizer_part.h
korganizer_debug.cpp
)
add_library
(
korganizerpart MODULE
${
korganizerpart_PART_SRCS
}
)
if
(
COMPILE_WITH_UNITY_CMAKE_SUPPORT
)
...
...
@@ -152,6 +155,8 @@ install(TARGETS
set
(
korganizer_core_LIB_SRCS
prefs/koprefs.cpp
kocore.cpp
prefs/koprefs.h
kocore.h
${
korganizer_common_SRCS
}
)
...
...
@@ -236,6 +241,45 @@ set(korganizerprivate_LIB_SRCS
pimmessagebox.cpp
korganizer.qrc
agendaitem_pixmaps/agendaitemtheme.qrc
manageshowcollectionproperties.h
korgmigrateapplication.h
collectiongeneralpage.h
aboutdata.h
actionmanager.h
akonadicollectionview.h
views/collectionview/reparentingmodel.h
views/collectionview/calendardelegate.h
views/collectionview/quickview.h
calendarview.h
datechecker.h
datenavigator.h
datenavigatorcontainer.h
dialog/filtereditdialog.h
widgets/kdatenavigator.h
kocorehelper.h
kodaymatrix.h
kodialogmanager.h
koeventpopupmenu.h
koeventview.h
dialog/koeventviewerdialog.h
koglobals.h
kohelper.h
impl/korganizerifaceimpl.h
koviewmanager.h
kowindowlist.h
widgets/navigatorbar.h
dialog/searchdialog.h
helper/searchcollectionhelper.h
views/agendaview/koagendaview.h
views/journalview/kojournalview.h
views/listview/kolistview.h
views/monthview/monthview.h
views/multiagendaview/multiagendaview.h
views/timelineview/kotimelineview.h
views/todoview/kotodoview.h
views/whatsnextview/kowhatsnextview.h
pimmessagebox.h
)
set_property
(
SOURCE
${
CMAKE_CURRENT_BINARY_DIR
}
/qrc_korganizer.cpp PROPERTY SKIP_AUTOMOC ON
)
...
...
src/interfaces/korganizer/CMakeLists.txt
View file @
ac281f4c
...
...
@@ -5,6 +5,8 @@ add_library(korganizer_interfaces)
target_sources
(
korganizer_interfaces PRIVATE
baseview.cpp
mainwindow.cpp
baseview.h
mainwindow.h
)
generate_export_header
(
korganizer_interfaces BASE_NAME korganizer_interfaces
)
target_link_libraries
(
korganizer_interfaces
...
...
src/kontactplugin/korganizer/CMakeLists.txt
View file @
ac281f4c
########### next target ###############
set
(
libcommon_SRCS korg_uniqueapp.cpp
)
set
(
libcommon_SRCS korg_uniqueapp.cpp
korg_uniqueapp.h
)
ecm_qt_declare_logging_category
(
libcommon_SRCS HEADER korganizerplugin_debug.h IDENTIFIER KORGANIZERPLUGIN_LOG CATEGORY_NAME org.kde.pim.korganizer_plugin
DESCRIPTION
"korganizer (korganizer kontact plugins)"
OLD_CATEGORY_NAMES log_korganizer_plugin
...
...
@@ -7,7 +7,7 @@ ecm_qt_declare_logging_category(libcommon_SRCS HEADER korganizerplugin_debug.h I
)
set
(
kontact_korganizerplugin_PART_SRCS korganizerplugin.cpp apptsummarywidget.cpp summaryeventinfo.cpp
${
libcommon_SRCS
}
)
set
(
kontact_korganizerplugin_PART_SRCS korganizerplugin.cpp apptsummarywidget.cpp summaryeventinfo.cpp
korganizerplugin.h apptsummarywidget.h summaryeventinfo.h
${
libcommon_SRCS
}
)
qt_add_dbus_interfaces
(
kontact_korganizerplugin_PART_SRCS
${
korganizer_SOURCE_DIR
}
/src/data/org.kde.Korganizer.Calendar.xml
${
korganizer_SOURCE_DIR
}
/src/data/org.kde.korganizer.Korganizer.xml
)
...
...
@@ -19,7 +19,7 @@ kcoreaddons_desktop_to_json(kontact_korganizerplugin korganizerplugin.desktop SE
########### next target ###############
set
(
kontact_todoplugin_PART_SRCS todoplugin.cpp todosummarywidget.cpp
${
libcommon_SRCS
}
)
set
(
kontact_todoplugin_PART_SRCS todoplugin.cpp todosummarywidget.cpp
todoplugin.h todosummarywidget.h
${
libcommon_SRCS
}
)
qt_add_dbus_interfaces
(
kontact_todoplugin_PART_SRCS
${
korganizer_SOURCE_DIR
}
/src/data/org.kde.Korganizer.Calendar.xml
${
korganizer_SOURCE_DIR
}
/src/data/org.kde.korganizer.Korganizer.xml
)
...
...
@@ -31,7 +31,7 @@ kcoreaddons_desktop_to_json(kontact_todoplugin todoplugin.desktop)
########### next target ###############
set
(
kontact_journalplugin_PART_SRCS journalplugin.cpp
${
libcommon_SRCS
}
)
set
(
kontact_journalplugin_PART_SRCS journalplugin.cpp
journalplugin.h
${
libcommon_SRCS
}
)
qt_add_dbus_interfaces
(
kontact_journalplugin_PART_SRCS
${
korganizer_SOURCE_DIR
}
/src/data/org.kde.Korganizer.Calendar.xml
)
...
...
@@ -43,7 +43,7 @@ kcoreaddons_desktop_to_json(kontact_journalplugin journalplugin.desktop)
########### next target ###############
set
(
kcmapptsummary_PART_SRCS kcmapptsummary.cpp
)
set
(
kcmapptsummary_PART_SRCS kcmapptsummary.cpp
kcmapptsummary.h
)
ki18n_wrap_ui
(
kcmapptsummary_PART_SRCS apptsummaryconfig_base.ui
)
...
...
@@ -53,7 +53,7 @@ target_link_libraries(kcmapptsummary KF5::KCMUtils KF5::I18n)
########### next target ###############
set
(
kcmtodosummary_PART_SRCS kcmtodosummary.cpp
)
set
(
kcmtodosummary_PART_SRCS kcmtodosummary.cpp
kcmtodosummary.h
)
ki18n_wrap_ui
(
kcmtodosummary_PART_SRCS todosummaryconfig_base.ui
)
...
...
src/kontactplugin/specialdates/CMakeLists.txt
View file @
ac281f4c
...
...
@@ -2,7 +2,7 @@
set
(
kontact_specialdatesplugin_PART_SRCS specialdates_plugin.cpp sdsummarywidget.cpp
)
set
(
kontact_specialdatesplugin_PART_SRCS specialdates_plugin.cpp sdsummarywidget.cpp
specialdates_plugin.h sdsummarywidget.h
)
ecm_qt_declare_logging_category
(
kontact_specialdatesplugin_PART_SRCS HEADER korganizer_kontactplugins_specialdates_debug.h IDENTIFIER KORGANIZER_KONTACTPLUGINS_SPECIALDATES_LOG CATEGORY_NAME org.kde.pim.korganizer_kontactplugins_specialdates
DESCRIPTION
"korganizer (kontactplugins korganizer special dates)"
OLD_CATEGORY_NAMES log_korganizer_kontactplugins_specialdates
...
...
@@ -28,7 +28,7 @@ kcoreaddons_desktop_to_json(kontact_specialdatesplugin specialdatesplugin.deskto
########### next target ###############
set
(
kcmsdsummary_PART_SRCS kcmsdsummary.cpp
)
set
(
kcmsdsummary_PART_SRCS kcmsdsummary.cpp
kcmsdsummary.h
)
ki18n_wrap_ui
(
kcmsdsummary_PART_SRCS sdsummaryconfig_base.ui
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment