You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/kopete/kopete/chatwindow/CMakeLists.txt

77 lines
2.0 KiB

#################################################
#
# (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/private
${CMAKE_SOURCE_DIR}/kopete/libkopete/ui
${CMAKE_SOURCE_DIR}/kopete/libkopete
${CMAKE_SOURCE_DIR}/kopete/kopete
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
)
##### other data ################################
install( FILES kopeterichtexteditpartfull.rc DESTINATION ${DATA_INSTALL_DIR}/kopeterichtexteditpart )
install( FILES kopetechatwindow.rc kopeteemailwindow.rc DESTINATION ${DATA_INSTALL_DIR}/kopete )
tde_create_translated_desktop(
SOURCE chatwindow.desktop emailwindow.desktop
DESTINATION ${SERVICES_INSTALL_DIR}
PO_DIR kopete-desktops
)
##### libkrichtexteditpart (module) #############
tde_add_kpart( libkrichtexteditpart AUTOMOC
SOURCES krichtexteditpart.cpp
LINK kopete-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### kopete_chatwindow (module) ################
tde_add_kpart( kopete_chatwindow AUTOMOC
SOURCES
chatview.cpp kopetechatwindow.cpp chatmemberslistwidget.cpp
LINK kopeteui-static kopetechatwindow-static kopete-shared tdehtml-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### kopete_emailwindow (module) ###############
tde_add_kpart( kopete_emailwindow AUTOMOC
SOURCES
kopeteemailwindow.cpp
LINK kopeteui-static kopetechatwindow-static kopete-shared tdehtml-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### kopetechatwindow (static) #################
tde_add_library( kopetechatwindow STATIC_PIC AUTOMOC
SOURCES
chatmessagepart.cpp emoticonselector.cpp kopeteemoticonaction.cpp
chattexteditpart.cpp krichtexteditpart.cpp kopetechatwindowstyle.cpp
kopetechatwindowstylemanager.cpp
)