diff options
Diffstat (limited to 'kfind/CMakeLists.txt')
-rw-r--r-- | kfind/CMakeLists.txt | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/kfind/CMakeLists.txt b/kfind/CMakeLists.txt new file mode 100644 index 000000000..91ed980f5 --- /dev/null +++ b/kfind/CMakeLists.txt @@ -0,0 +1,61 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +if( NOT BUILD_LIBKONQ ) + include( "${TDE_CMAKE_DIR}/libkonq.cmake" ) +endif( NOT BUILD_LIBKONQ ) + +add_subdirectory( pics ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/libkonq + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +tde_install_icons( kfind ) +install( FILES Kfind.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) +install( FILES kfindpart.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) +install( FILES findpart.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR} ) + + +##### libkfindpart (module) ##################### + +tde_add_kpart( libkfindpart AUTOMOC + SOURCES kfindpart.cpp + LINK kfind_common-static konq-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### kfind (executable) ###################### + +tde_add_executable( kfind AUTOMOC + SOURCES kfwin.cpp kfinddlg.cpp main.cpp + LINK kfind_common-static + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### kfind_common (static) ##################### + +tde_add_library( kfind_common STATIC_PIC AUTOMOC + SOURCES kftabdlg.cpp kfind.cpp kquery.cpp kdatecombo.cpp + LINK kparts-shared +) |