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.
70 lines
1.8 KiB
70 lines
1.8 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 )
|
|
|
|
add_subdirectory( pixmaps )
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_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_create_translated_desktop( konsolekalendar.desktop )
|
|
|
|
|
|
##### helper ####################################
|
|
|
|
macro( process_kcfg _who _out _path _kcfg _kcfgc )
|
|
add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${_path}/${_out}
|
|
COMMAND
|
|
mkdir -p ${CMAKE_CURRENT_BINARY_DIR}/${_path}
|
|
COMMAND ${KDE3_KCFGC_EXECUTABLE}
|
|
-d ${CMAKE_CURRENT_BINARY_DIR}/${_path}
|
|
${CMAKE_SOURCE_DIR}/${_path}/${_kcfg}
|
|
${CMAKE_SOURCE_DIR}/${_path}/${_kcfgc}
|
|
DEPENDS
|
|
${CMAKE_SOURCE_DIR}/${_path}/${_kcfg}
|
|
${CMAKE_SOURCE_DIR}/${_path}/${_kcfgc} )
|
|
set_property( SOURCE ${_who} APPEND
|
|
PROPERTY OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${_path}/${_out} )
|
|
endmacro( )
|
|
|
|
|
|
##### konsolekalendar (executable) ##############
|
|
|
|
process_kcfg( konsolekalendar.cpp htmlexportsettings.h libkcal
|
|
htmlexportsettings.kcfg htmlexportsettings.kcfgc )
|
|
|
|
tde_add_executable( konsolekalendar AUTOMOC
|
|
SOURCES
|
|
konsolekalendarepoch.cpp konsolekalendardelete.cpp
|
|
konsolekalendarchange.cpp konsolekalendarvariables.cpp
|
|
konsolekalendaradd.cpp konsolekalendarexports.cpp konsolekalendar.cpp
|
|
stdcalendar.cpp main.cpp
|
|
LINK tdepim-shared
|
|
DESTINATION ${BIN_INSTALL_DIR}
|
|
)
|