diff options
author | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-23 23:42:11 +0000 |
---|---|---|
committer | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-23 23:42:11 +0000 |
commit | b6fc43ccd522dfbc1e215b12adb8208c156bbd31 (patch) | |
tree | b6d14378dd6c3d2f74ea8acf515cef7f4a024cb2 /kcontrol/componentchooser/CMakeLists.txt | |
parent | d53bf360906757a36588588fb0286d3b4784ffcb (diff) | |
download | tdebase-b6fc43ccd522dfbc1e215b12adb8208c156bbd31.tar.gz tdebase-b6fc43ccd522dfbc1e215b12adb8208c156bbd31.zip |
[kdebase] initial cmake support
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1216551 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcontrol/componentchooser/CMakeLists.txt')
-rw-r--r-- | kcontrol/componentchooser/CMakeLists.txt | 38 |
1 files changed, 38 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} +) |