diff options
author | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-03-21 00:29:04 +0000 |
---|---|---|
committer | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-03-21 00:29:04 +0000 |
commit | f5b07a4a12d57d28dee8662d296dd400d26ba7fe (patch) | |
tree | 24b4c61a0576f1c5d3571cc8d6c81262e6171227 /knotes | |
parent | 6bab61d816e8321b2d66a7183af04269a832ea81 (diff) | |
download | tdepim-f5b07a4a12d57d28dee8662d296dd400d26ba7fe.tar.gz tdepim-f5b07a4a12d57d28dee8662d296dd400d26ba7fe.zip |
[kdepim] initial cmake support for: knotes, kode, korganizer, kresources, plugins, wizards
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1225440 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'knotes')
-rw-r--r-- | knotes/CMakeLists.txt | 85 | ||||
-rw-r--r-- | knotes/icons/CMakeLists.txt | 12 | ||||
-rw-r--r-- | knotes/pics/CMakeLists.txt | 12 | ||||
-rw-r--r-- | knotes/pushpin.xpm | 2 |
4 files changed, 110 insertions, 1 deletions
diff --git a/knotes/CMakeLists.txt b/knotes/CMakeLists.txt new file mode 100644 index 000000000..1e37d7ed7 --- /dev/null +++ b/knotes/CMakeLists.txt @@ -0,0 +1,85 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +project( knotes ) + +tde_import( libkmime ) +tde_import( ktnef ) +tde_import( libkcal ) +tde_import( libkdepim ) + +add_subdirectory( pics ) +add_subdirectory( icons ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### headers ################################### + +install( FILES KNotesIface.h KNotesAppIface.h DESTINATION ${INCLUDE_INSTALL_DIR} ) + + +##### other data ################################ + +install( FILES knotes.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) +install( FILES knoteconfig.kcfg knotesglobalconfig.kcfg DESTINATION ${KCFG_INSTALL_DIR} ) +install( FILES knotesappui.rc knotesui.rc DESTINATION ${DATA_INSTALL_DIR}/knotes ) +install( FILES local.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kresources/knotes ) +install( FILES knotes_manager.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kresources ) + + +##### knotes (executable) ####################### + +tde_add_executable( knotes AUTOMOC + SOURCES + main.cpp knotesapp.cpp KNotesAppIface.skel + LINK knotes-shared + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### knotes_local (module) ##################### + +tde_add_kpart( knotes_local AUTOMOC + SOURCES + resourcelocal_plugin.cpp + LINK knotes-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### knotes (shared) ########################### + +tde_add_library( knotes SHARED AUTOMOC + SOURCES + knoteslegacy.cpp knoteconfig.kcfgc knotesglobalconfig.kcfgc knoteedit.cpp + knoteprinter.cpp knotesnetrecv.cpp knotesnetsend.cpp resourcemanager.cpp + resourcenotes.cpp resourcelocal.cpp resourcelocalconfig.cpp knote.cpp + knotebutton.cpp knoteconfigdlg.cpp knotehostdlg.cpp knotealarmdlg.cpp + knotesalarm.cpp + VERSION 0.0.0 + LINK kdepim-shared kutils-shared kdeprint-shared + DESTINATION ${LIB_INSTALL_DIR} +) + + +##### install import cmake modules ############### + +tde_install_export( ) diff --git a/knotes/icons/CMakeLists.txt b/knotes/icons/CMakeLists.txt new file mode 100644 index 000000000..8832743c6 --- /dev/null +++ b/knotes/icons/CMakeLists.txt @@ -0,0 +1,12 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/knotes/icons ) diff --git a/knotes/pics/CMakeLists.txt b/knotes/pics/CMakeLists.txt new file mode 100644 index 000000000..db8d4480c --- /dev/null +++ b/knotes/pics/CMakeLists.txt @@ -0,0 +1,12 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +tde_install_icons( ) diff --git a/knotes/pushpin.xpm b/knotes/pushpin.xpm index 4aef6adf9..d80fa82b8 100644 --- a/knotes/pushpin.xpm +++ b/knotes/pushpin.xpm @@ -1,6 +1,6 @@ /* Pushpin XPM (courtsey google image search) [copyright :O ???] */ -static char *pushpin_xpm[] = { +static const char *pushpin_xpm[] = { "27 29 363 2", " c None", ". c #F60404", |