┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/itemactions/CMakeLists.txt
diff options
context:
space:
mode:
authorMéven Car <[email protected]>2025-06-09 12:16:36 +0000
committerMéven Car <[email protected]>2025-06-09 12:16:36 +0000
commit697d58e9727e229abb81956d27a05d1f02d8c775 (patch)
tree639c00be3e8f26f221379fe33accc44c49f9740a /src/itemactions/CMakeLists.txt
parent2369b0c46ccab88e1cee310de22def6aaff41b00 (diff)
Add a SetFolderIcon ItemAction plugin
To allow to change folder icon from the context menu. CCBUG: 467221
Diffstat (limited to 'src/itemactions/CMakeLists.txt')
-rw-r--r--src/itemactions/CMakeLists.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/itemactions/CMakeLists.txt b/src/itemactions/CMakeLists.txt
new file mode 100644
index 000000000..6610b0e4a
--- /dev/null
+++ b/src/itemactions/CMakeLists.txt
@@ -0,0 +1,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()