diff options
Diffstat (limited to 'tdeabc/tdeabcdistlistupdater/CMakeLists.txt')
-rw-r--r-- | tdeabc/tdeabcdistlistupdater/CMakeLists.txt | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/tdeabc/tdeabcdistlistupdater/CMakeLists.txt b/tdeabc/tdeabcdistlistupdater/CMakeLists.txt new file mode 100644 index 000000000..ddbdd7c9d --- /dev/null +++ b/tdeabc/tdeabcdistlistupdater/CMakeLists.txt @@ -0,0 +1,42 @@ +################################################# +# +# (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_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( + FILES tdeabcdistlistupdater.desktop + DESTINATION ${AUTOSTART_INSTALL_DIR} +) + + +##### tdeabcdistlistupdater (executable) #################### + +tde_add_executable( tdeabcdistlistupdater + SOURCES tdeabcdistlistupdater.cpp + LINK tdepim-shared + DESTINATION ${BIN_INSTALL_DIR} +) |