diff options
Diffstat (limited to 'kopete/plugins/alias')
-rw-r--r-- | kopete/plugins/alias/CMakeLists.txt | 50 | ||||
-rw-r--r-- | kopete/plugins/alias/aliasplugin.cpp | 2 |
2 files changed, 51 insertions, 1 deletions
diff --git a/kopete/plugins/alias/CMakeLists.txt b/kopete/plugins/alias/CMakeLists.txt new file mode 100644 index 00000000..d8ca2088 --- /dev/null +++ b/kopete/plugins/alias/CMakeLists.txt @@ -0,0 +1,50 @@ +################################################# +# +# (C) 2010-2011 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} + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/kopete/libkopete + ${CMAKE_SOURCE_DIR}/kopete/libkopete/ui + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES kopete_alias.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) +install( FILES kopete_alias_config.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kconfiguredialog ) + + +##### kopete_alias (module) ##################### + +tde_add_kpart( kopete_alias AUTOMOC + SOURCES + aliasplugin.cpp + LINK kopete-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### kcm_kopete_alias (module) ################# + +tde_add_kpart( kcm_kopete_alias AUTOMOC + SOURCES + aliaspreferences.cpp aliasdialogbase.ui + aliasdialog.ui editaliasdialog.cpp + LINK kopete-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) diff --git a/kopete/plugins/alias/aliasplugin.cpp b/kopete/plugins/alias/aliasplugin.cpp index 52a8511b..4824e2fb 100644 --- a/kopete/plugins/alias/aliasplugin.cpp +++ b/kopete/plugins/alias/aliasplugin.cpp @@ -9,7 +9,7 @@ #include <kgenericfactory.h> -#include "kopetemessagemanagerfactory.h" +#include "kopetechatsessionmanager.h" #include "aliasplugin.h" |