summaryrefslogtreecommitdiffstats
path: root/src/apps/ktcachecheck
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-10 20:36:49 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-21 19:05:50 +0900
commit73da215882d7f96b6010fa99361c7cc10ec18bfb (patch)
treecea1a5016a94a9dac26cab8227e2513224288be3 /src/apps/ktcachecheck
parentbb099158e6c9fd0f1c2771cb9350d3b0a0b51a27 (diff)
downloadktorrent-73da2158.tar.gz
ktorrent-73da2158.zip
Conversion to cmake building system
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit bf204e931c605c73d761ec84943bb0cc94d7e7e4)
Diffstat (limited to 'src/apps/ktcachecheck')
-rw-r--r--src/apps/ktcachecheck/CMakeLists.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/apps/ktcachecheck/CMakeLists.txt b/src/apps/ktcachecheck/CMakeLists.txt
new file mode 100644
index 0000000..e1f5b13
--- /dev/null
+++ b/src/apps/ktcachecheck/CMakeLists.txt
@@ -0,0 +1,16 @@
+include_directories(
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_SOURCE_DIR}/src/libktorrent
+ ${CMAKE_CURRENT_BINARY_DIR}
+)
+
+
+##### ktcachecheck (executable)
+
+tde_add_executable( ktcachecheck AUTOMOC
+ SOURCES
+ cachecheck.cpp cachechecker.cpp singlecachechecker.cpp multicachechecker.cpp
+ LINK
+ ktorrent-shared tdecore-shared tdeui-shared tdeio-shared DCOP-shared
+ DESTINATION ${BIN_INSTALL_DIR}
+)