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.
62 lines
1.6 KiB
62 lines
1.6 KiB
#################################################
|
|
#
|
|
# (C) 2010-2011 Serghei Amelian
|
|
# serghei (DOT) amelian (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
tde_import( libkmime )
|
|
tde_import( ktnef )
|
|
tde_import( libkcal )
|
|
tde_import( libtdepim )
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_BINARY_DIR}
|
|
${CMAKE_SOURCE_DIR}
|
|
${CMAKE_SOURCE_DIR}/libtdepim
|
|
${TDE_INCLUDE_DIR}
|
|
${TQT_INCLUDE_DIRS}
|
|
)
|
|
|
|
link_directories(
|
|
${TQT_LIBRARY_DIRS}
|
|
)
|
|
|
|
|
|
##### other data ################################
|
|
|
|
tde_install_icons( kandy )
|
|
install( FILES kandy.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
|
|
install( FILES uninstall.desktop RENAME kandy.desktop DESTINATION ${APPS_INSTALL_DIR}/Utilities )
|
|
install( FILES kandy.kcfg DESTINATION ${KCFG_INSTALL_DIR} )
|
|
install( FILES kandyui.rc kandymobileui.rc DESTINATION ${DATA_INSTALL_DIR}/kandy )
|
|
|
|
|
|
##### kandy (executable) ########################
|
|
|
|
tde_add_executable( kandy AUTOMOC
|
|
SOURCES
|
|
main.cpp kandy.cpp cmdpropertiesdialog_base.ui
|
|
cmdpropertiesdialog.cpp kandyview.cpp kandyiface.skel modem.cpp
|
|
atcommand.cpp commanditem.cpp mobilegui_base.ui mobilegui.cpp
|
|
commandscheduler.cpp commandset.cpp kandyprefs.kcfgc
|
|
kandyprefsdialog.cpp mobilemain.cpp
|
|
LINK tdepim-shared
|
|
DESTINATION ${BIN_INSTALL_DIR}
|
|
)
|
|
|
|
|
|
##### kandy_client (executable) #################
|
|
|
|
tde_add_executable( kandy_client AUTOMOC
|
|
SOURCES kandy_client.cpp
|
|
LINK tdecore-shared
|
|
DESTINATION ${BIN_INSTALL_DIR}
|
|
)
|