Skip to content
GitLab
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
a704de1c
Commit
a704de1c
authored
Dec 11, 2021
by
Alexander Lohnau
💬
Committed by
Luigi Toscano
Dec 12, 2021
Browse files
Remove now unneeded desktop to json conversion code
Task:
https://phabricator.kde.org/T14564
parent
00bd70c2
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/CMakeLists.txt
View file @
a704de1c
...
...
@@ -83,47 +83,38 @@ target_link_libraries(korganizer_kcm_static
)
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 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.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.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.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 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 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 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 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
)
...
...
src/kontactplugin/korganizer/CMakeLists.txt
View file @
a704de1c
...
...
@@ -17,8 +17,6 @@ add_library(kontact_korganizerplugin MODULE ${kontact_korganizerplugin_PART_SRCS
target_link_libraries
(
kontact_korganizerplugin KF5::AkonadiCalendar KF5::CalendarUtils KF5::Contacts KF5::CalendarCore KF5::KontactInterface korganizerprivate KF5::CalendarSupport KF5::AkonadiCalendar KF5::WindowSystem KF5::I18n
)
kcoreaddons_desktop_to_json
(
kontact_korganizerplugin korganizerplugin.desktop SERVICE_TYPES kcmodule.desktop
)
########### next target ###############
set
(
kontact_todoplugin_PART_SRCS todoplugin.cpp todosummarywidget.cpp todoplugin.h todosummarywidget.h
${
libcommon_SRCS
}
)
...
...
@@ -29,8 +27,6 @@ add_library(kontact_todoplugin MODULE ${kontact_todoplugin_PART_SRCS})
target_link_libraries
(
kontact_todoplugin KF5::AkonadiCalendar KF5::Contacts KF5::KontactInterface KF5::CalendarCore KF5::CalendarUtils KF5::CalendarSupport KF5::AkonadiCalendar KF5::WindowSystem
)
kcoreaddons_desktop_to_json
(
kontact_todoplugin todoplugin.desktop
)
########### next target ###############
set
(
kontact_journalplugin_PART_SRCS journalplugin.cpp journalplugin.h
${
libcommon_SRCS
}
)
...
...
@@ -41,8 +37,6 @@ add_library(kontact_journalplugin MODULE ${kontact_journalplugin_PART_SRCS})
target_link_libraries
(
kontact_journalplugin KF5::I18n KF5::KontactInterface KF5::WindowSystem
)
kcoreaddons_desktop_to_json
(
kontact_journalplugin journalplugin.desktop
)
########### next target ###############
set
(
kcmapptsummary_PART_SRCS kcmapptsummary.cpp kcmapptsummary.h
)
...
...
@@ -50,7 +44,6 @@ set(kcmapptsummary_PART_SRCS kcmapptsummary.cpp kcmapptsummary.h)
ki18n_wrap_ui
(
kcmapptsummary_PART_SRCS apptsummaryconfig_base.ui
)
add_library
(
kcmapptsummary MODULE
${
kcmapptsummary_PART_SRCS
}
)
kcoreaddons_desktop_to_json
(
kcmapptsummary
"kcmapptsummary.desktop"
SERVICE_TYPES kcmodule.desktop
)
target_link_libraries
(
kcmapptsummary KF5::KCMUtils KF5::I18n
)
########### next target ###############
...
...
@@ -60,7 +53,6 @@ set(kcmtodosummary_PART_SRCS kcmtodosummary.cpp kcmtodosummary.h)
ki18n_wrap_ui
(
kcmtodosummary_PART_SRCS todosummaryconfig_base.ui
)
add_library
(
kcmtodosummary MODULE
${
kcmtodosummary_PART_SRCS
}
)
kcoreaddons_desktop_to_json
(
kcmtodosummary
"kcmtodosummary.desktop"
SERVICE_TYPES kcmodule.desktop
)
target_link_libraries
(
kcmtodosummary Qt::Widgets KF5::KCMUtils KF5::I18n
)
########## Unit Test ###########
...
...
src/kontactplugin/specialdates/CMakeLists.txt
View file @
a704de1c
...
...
@@ -26,8 +26,6 @@ target_link_libraries(kontact_specialdatesplugin
KF5::CalendarSupport
)
kcoreaddons_desktop_to_json
(
kontact_specialdatesplugin specialdatesplugin.desktop
)
########### next target ###############
set
(
kcmsdsummary_PART_SRCS kcmsdsummary.cpp kcmsdsummary.h
)
...
...
@@ -35,7 +33,6 @@ set(kcmsdsummary_PART_SRCS kcmsdsummary.cpp kcmsdsummary.h)
ki18n_wrap_ui
(
kcmsdsummary_PART_SRCS sdsummaryconfig_base.ui
)
add_library
(
kcmsdsummary MODULE
${
kcmsdsummary_PART_SRCS
}
)
kcoreaddons_desktop_to_json
(
kcmsdsummary
"kcmsdsummary.desktop"
SERVICE_TYPES kcmodule.desktop
)
target_link_libraries
(
kcmsdsummary Qt::Widgets KF5::KCMUtils KF5::I18n
)
########### install files ###############
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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