diff options
Diffstat (limited to 'korganizer/plugins/printing')
-rw-r--r-- | korganizer/plugins/printing/CMakeLists.txt | 13 | ||||
-rw-r--r-- | korganizer/plugins/printing/journal/CMakeLists.txt | 40 | ||||
-rw-r--r-- | korganizer/plugins/printing/year/CMakeLists.txt | 38 |
3 files changed, 91 insertions, 0 deletions
diff --git a/korganizer/plugins/printing/CMakeLists.txt b/korganizer/plugins/printing/CMakeLists.txt new file mode 100644 index 000000000..db8006f90 --- /dev/null +++ b/korganizer/plugins/printing/CMakeLists.txt @@ -0,0 +1,13 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( journal ) +add_subdirectory( year ) diff --git a/korganizer/plugins/printing/journal/CMakeLists.txt b/korganizer/plugins/printing/journal/CMakeLists.txt new file mode 100644 index 000000000..186078ab9 --- /dev/null +++ b/korganizer/plugins/printing/journal/CMakeLists.txt @@ -0,0 +1,40 @@ +################################################# +# +# (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_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/korganizer/interfaces + ${CMAKE_SOURCE_DIR}/korganizer/interfaces/korganizer + ${CMAKE_SOURCE_DIR}/korganizer/printing + ${CMAKE_SOURCE_DIR}/libkdepim + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES journalprint.desktop DESTINATION ${SERVICES_INSTALL_DIR}/korganizer ) + + +##### libkorg_journalprint (module) ############# + +tde_add_kpart( libkorg_journalprint AUTOMOC + SOURCES + calprintjournalconfig_base.ui journalprint.cpp + LINK korg_stdprinting-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) diff --git a/korganizer/plugins/printing/year/CMakeLists.txt b/korganizer/plugins/printing/year/CMakeLists.txt new file mode 100644 index 000000000..755cf96db --- /dev/null +++ b/korganizer/plugins/printing/year/CMakeLists.txt @@ -0,0 +1,38 @@ +################################################# +# +# (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_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/korganizer/interfaces + ${CMAKE_SOURCE_DIR}/korganizer/printing + ${CMAKE_SOURCE_DIR}/libkdepim + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES yearprint.desktop DESTINATION ${SERVICES_INSTALL_DIR}/korganizer ) + + +##### libkorg_yearlyprint (module) ############## + +tde_add_kpart( libkorg_yearlyprint AUTOMOC + SOURCES calprintyearconfig_base.ui yearprint.cpp + LINK korg_stdprinting-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) |