blob: 6610b0e4a874154e12e7245c012fa44b09d77e3c (
plain)
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
|
# movetonewfolderitemaction plugin
kcoreaddons_add_plugin(movetonewfolderitemaction
SOURCES movetonewfolderitemaction.cpp movetonewfolderitemaction.h
INSTALL_NAMESPACE "kf6/kfileitemaction")
target_link_libraries(movetonewfolderitemaction
KF6::I18n
KF6::KIOCore
KF6::KIOWidgets
KF6::KIOFileWidgets)
if(NOT WIN32)
# setfoldericon plugin
kcoreaddons_add_plugin(setfoldericonitemaction
SOURCES setfoldericonitemaction.cpp setfoldericonitemaction.h ../dolphindebug.h ../dolphindebug.cpp
INSTALL_NAMESPACE "kf6/kfileitemaction")
target_link_libraries(setfoldericonitemaction
KF6::I18n
KF6::KIOCore
KF6::KIOWidgets)
endif()
|