diff options
Diffstat (limited to 'kcontrol/componentchooser')
-rw-r--r-- | kcontrol/componentchooser/CMakeLists.txt | 38 | ||||
-rw-r--r-- | kcontrol/componentchooser/componentservices/CMakeLists.txt | 14 |
2 files changed, 52 insertions, 0 deletions
diff --git a/kcontrol/componentchooser/CMakeLists.txt b/kcontrol/componentchooser/CMakeLists.txt new file mode 100644 index 000000000..0a7eef7f5 --- /dev/null +++ b/kcontrol/componentchooser/CMakeLists.txt @@ -0,0 +1,38 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( componentservices ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + +##### other data ################################ + +install( FILES componentchooser.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) + + +##### kcm_componentchooser (module) ############# + +tde_add_kpart( kcm_componentchooser AUTOMOC + SOURCES + componentchooser_ui.ui componentconfig_ui.ui + emailclientconfig_ui.ui terminalemulatorconfig_ui.ui + browserconfig_ui.ui componentchooser.cpp kcm_componentchooser.cpp + LINK kio-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) diff --git a/kcontrol/componentchooser/componentservices/CMakeLists.txt b/kcontrol/componentchooser/componentservices/CMakeLists.txt new file mode 100644 index 000000000..f8da91cf5 --- /dev/null +++ b/kcontrol/componentchooser/componentservices/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES + kcm_kemail.desktop kcm_terminal.desktop kcm_browser.desktop + DESTINATION ${DATA_INSTALL_DIR}/kcm_componentchooser ) |