kde-workspace/kcontrol/kmetainfo/CMakeLists.txt
Ivailo Monev 73b37d03de kcontrol: new module to control meta information
the only other way to control which meta information to show in tooltips
and such is to enable Dolphin information panel, find file that has the
desired metadata to disable and right click on the metadata widget after
hovering over the file which is very much not obvious and tedious

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-03-10 13:10:27 +02:00

24 lines
475 B
CMake

########### next target ###############
set(kmetainfoconfig_SRCS
kmetainfoconfig.cpp
kmetainfoconfig.ui
)
kde4_add_plugin(kcm_kmetainfoconfig ${kmetainfoconfig_SRCS})
target_link_libraries(kcm_kmetainfoconfig
${KDE4_KDEUI_LIBS}
${KDE4_KCMUTILS_LIBS}
${KDE4_KIO_LIBS}
)
install(
TARGETS kcm_kmetainfoconfig
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
)
install(
FILES kcm_kmetainfoconfig.desktop
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
)