From adee843c4d5c8fbce75abd3a768d643392e4ea90 Mon Sep 17 00:00:00 2001 From: Serghei Amelian Date: Tue, 14 Feb 2012 20:55:22 +0200 Subject: [tdesdk/cmake] added forgotten files --- kfile-plugins/CMakeLists.txt | 14 ++++++++++++++ kfile-plugins/c++/CMakeLists.txt | 35 +++++++++++++++++++++++++++++++++++ kfile-plugins/diff/CMakeLists.txt | 34 ++++++++++++++++++++++++++++++++++ kfile-plugins/ts/CMakeLists.txt | 35 +++++++++++++++++++++++++++++++++++ 4 files changed, 118 insertions(+) create mode 100644 kfile-plugins/CMakeLists.txt create mode 100644 kfile-plugins/c++/CMakeLists.txt create mode 100644 kfile-plugins/diff/CMakeLists.txt create mode 100644 kfile-plugins/ts/CMakeLists.txt (limited to 'kfile-plugins') diff --git a/kfile-plugins/CMakeLists.txt b/kfile-plugins/CMakeLists.txt new file mode 100644 index 00000000..6b769e5c --- /dev/null +++ b/kfile-plugins/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2012 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( diff ) +add_subdirectory( c++ ) +add_subdirectory( ts ) diff --git a/kfile-plugins/c++/CMakeLists.txt b/kfile-plugins/c++/CMakeLists.txt new file mode 100644 index 00000000..9b56e9d8 --- /dev/null +++ b/kfile-plugins/c++/CMakeLists.txt @@ -0,0 +1,35 @@ +################################################# +# +# (C) 2012 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES kfile_cpp.desktop kfile_h.desktop + DESTINATION ${SERVICES_INSTALL_DIR} ) + + +##### kfile_cpp (module) ######################## + +tde_add_kpart( kfile_cpp AUTOMOC + SOURCES kfile_cpp.cpp + LINK kio-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) diff --git a/kfile-plugins/diff/CMakeLists.txt b/kfile-plugins/diff/CMakeLists.txt new file mode 100644 index 00000000..292372c3 --- /dev/null +++ b/kfile-plugins/diff/CMakeLists.txt @@ -0,0 +1,34 @@ +################################################# +# +# (C) 2012 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES kfile_diff.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) + + +##### kfile_diff (module) ####################### + +tde_add_kpart( kfile_diff AUTOMOC + SOURCES kfile_diff.cpp + LINK kio-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) diff --git a/kfile-plugins/ts/CMakeLists.txt b/kfile-plugins/ts/CMakeLists.txt new file mode 100644 index 00000000..4e68beb6 --- /dev/null +++ b/kfile-plugins/ts/CMakeLists.txt @@ -0,0 +1,35 @@ +################################################# +# +# (C) 2012 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES kfile_ts.desktop + DESTINATION ${SERVICES_INSTALL_DIR} ) + + +##### kfile_ts (module) ######################### + +tde_add_kpart( kfile_ts AUTOMOC + SOURCES kfile_ts.cpp + LINK kio-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) -- cgit v1.2.1