diff options
Diffstat (limited to 'kioslave/gzip/CMakeLists.txt')
-rw-r--r-- | kioslave/gzip/CMakeLists.txt | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/kioslave/gzip/CMakeLists.txt b/kioslave/gzip/CMakeLists.txt new file mode 100644 index 000000000..184407d9b --- /dev/null +++ b/kioslave/gzip/CMakeLists.txt @@ -0,0 +1,45 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_definitions( + ${TQT_CFLAGS_OTHER} +) + +include_directories( + ${TQT_INCLUDE_DIRS} + ${CMAKE_BINARY_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/kio/kio +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES kgzipfilter.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) + + +##### kgzipfilter ############################### + +set( target kgzipfilter ) + +set( ${target}_SRCS + kgzipfilter.cpp +) + +tde_add_kpart( ${target} AUTOMOC + SOURCES ${${target}_SRCS} + LINK kio-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) |