From 7ffba8afee76edba6433d97864119501731742e8 Mon Sep 17 00:00:00 2001 From: samelian Date: Tue, 5 Oct 2010 19:41:05 +0000 Subject: [kdelibs] added initial cmake support git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1182854 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kspell2/CMakeLists.txt | 62 ++++++++++++++++++++++++++++++++ kspell2/plugins/CMakeLists.txt | 20 +++++++++++ kspell2/plugins/aspell/CMakeLists.txt | 48 +++++++++++++++++++++++++ kspell2/plugins/hspell/CMakeLists.txt | 53 +++++++++++++++++++++++++++ kspell2/plugins/ispell/CMakeLists.txt | 48 +++++++++++++++++++++++++ kspell2/ui/CMakeLists.txt | 67 +++++++++++++++++++++++++++++++++++ 6 files changed, 298 insertions(+) create mode 100644 kspell2/CMakeLists.txt create mode 100644 kspell2/plugins/CMakeLists.txt create mode 100644 kspell2/plugins/aspell/CMakeLists.txt create mode 100644 kspell2/plugins/hspell/CMakeLists.txt create mode 100644 kspell2/plugins/ispell/CMakeLists.txt create mode 100644 kspell2/ui/CMakeLists.txt (limited to 'kspell2') diff --git a/kspell2/CMakeLists.txt b/kspell2/CMakeLists.txt new file mode 100644 index 000000000..ac2df9720 --- /dev/null +++ b/kspell2/CMakeLists.txt @@ -0,0 +1,62 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( ui ) +add_subdirectory( plugins ) + +add_definitions( + ${TQT_CFLAGS_OTHER} +) + +include_directories( + ${TQT_INCLUDE_DIRS} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${CMAKE_BINARY_DIR}/kdecore + ${CMAKE_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/kdeui + ${CMAKE_SOURCE_DIR}/kutils + ${CMAKE_SOURCE_DIR}/kio + ${CMAKE_SOURCE_DIR}/kio/kio +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### headers ################################### + +install( FILES + settings.h filter.h dictionary.h broker.h + backgroundchecker.h defaultdictionary.h + DESTINATION ${INCLUDE_INSTALL_DIR}/kspell2 ) + + +##### other data ################################ + +install( FILES kspellclient.desktop DESTINATION ${SHARE_INSTALL_DIR}/servicetypes ) + + +#### kspell2base ################################ + +set( target kspell2base ) + +set( ${target}_SRCS + settings.cpp broker.cpp client.cpp filter.cpp + backgroundchecker.cpp backgroundthread.cpp + backgroundengine.cpp defaultdictionary.cpp +) + +tde_add_library( ${target} STATIC_PIC AUTOMOC + SOURCES ${${target}_SRCS} +) diff --git a/kspell2/plugins/CMakeLists.txt b/kspell2/plugins/CMakeLists.txt new file mode 100644 index 000000000..062d033d2 --- /dev/null +++ b/kspell2/plugins/CMakeLists.txt @@ -0,0 +1,20 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +if( WITH_ASPELL ) + add_subdirectory( aspell ) +endif(WITH_ASPELL) + +if( WITH_HSPELL ) + add_subdirectory( hspell ) +endif(WITH_HSPELL) + +add_subdirectory( ispell ) diff --git a/kspell2/plugins/aspell/CMakeLists.txt b/kspell2/plugins/aspell/CMakeLists.txt new file mode 100644 index 000000000..09b245cb1 --- /dev/null +++ b/kspell2/plugins/aspell/CMakeLists.txt @@ -0,0 +1,48 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_definitions( + ${TQT_CFLAGS_OTHER} +) + +include_directories( + ${TQT_INCLUDE_DIRS} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/kspell2 + ${CMAKE_SOURCE_DIR}/kdecore + ${ASPELL_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${ASPELL_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES kspell_aspell.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) + + +#### kspell_aspell ############################## + +set( target kspell_aspell ) + +set( ${target}_SRCS + kspell_aspellclient.cpp kspell_aspelldict.cpp +) + +tde_add_kpart( ${target} SHARED AUTOMOC + SOURCES ${${target}_SRCS} + LINK kspell2-shared ${ASPELL_LIBRARIES} + DESTINATION ${PLUGIN_INSTALL_DIR} +) diff --git a/kspell2/plugins/hspell/CMakeLists.txt b/kspell2/plugins/hspell/CMakeLists.txt new file mode 100644 index 000000000..4af8a6ca5 --- /dev/null +++ b/kspell2/plugins/hspell/CMakeLists.txt @@ -0,0 +1,53 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_definitions( + ${TQT_CFLAGS_OTHER} +) + +include_directories( + ${TQT_INCLUDE_DIRS} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/kspell2 + ${CMAKE_SOURCE_DIR}/kdecore + ${HSPELL_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${HSPELL_LIBARY_DIRS} +) + + +##### other data ################################ + +install( FILES kspell_hspell.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) + + +#### kspell_hspell ############################## + +### FIXME Not checked because hspell was removed from gentoo few years ago. +### FIXME The maintainer recommend to use aspell with hebrew dictionary. +### FIXME Maybe support for hspell will be removed too? +### FIXME http://bugs.gentoo.org/show_bug.cgi?id=177546 + +set( target kspell_hspell ) + +set( ${target}_SRCS + kspell_hspellclient.cpp kspell_hspelldict.cpp +) + +tde_add_kpart( ${target} AUTOMOC + SOURCES ${${target}_SRCS} + LINK kspell2-shared ${HSPELL_LIBRARIES} + DESTINATION ${PLUGIN_INSTALL_DIR} +) diff --git a/kspell2/plugins/ispell/CMakeLists.txt b/kspell2/plugins/ispell/CMakeLists.txt new file mode 100644 index 000000000..a1d7087a5 --- /dev/null +++ b/kspell2/plugins/ispell/CMakeLists.txt @@ -0,0 +1,48 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_definitions( + ${TQT_CFLAGS_OTHER} +) + +include_directories( + ${TQT_INCLUDE_DIRS} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/kspell2 + ${CMAKE_SOURCE_DIR}/kdecore +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES kspell_ispell.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) + + +#### kspell_ispell ############################## + +set( target kspell_ispell ) + +set( ${target}_SRCS + kspell_ispellclient.cpp kspell_ispelldict.cpp + correct.cpp good.cpp hash.cpp lookup.cpp makedent.cpp + tgood.cpp ispell_checker.cpp +) + +tde_add_kpart( ${target} AUTOMOC + SOURCES ${${target}_SRCS} + LINK kspell2-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) diff --git a/kspell2/ui/CMakeLists.txt b/kspell2/ui/CMakeLists.txt new file mode 100644 index 000000000..1348d39b4 --- /dev/null +++ b/kspell2/ui/CMakeLists.txt @@ -0,0 +1,67 @@ +################################################# +# +# (C) 2010 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_definitions( + ${TQT_CFLAGS_OTHER} + -DKDE_NO_COMPAT + -DQT_NO_COMPAT +) + +include_directories( + ${TQT_INCLUDE_DIRS} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${CMAKE_BINARY_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/kspell2 + ${CMAKE_SOURCE_DIR}/kdecore + ${CMAKE_SOURCE_DIR}/kdeui +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### headers ################################### + +install( FILES + dialog.h highlighter.h configdialog.h configwidget.h + DESTINATION ${INCLUDE_INSTALL_DIR}/kspell2 ) + + +#### kspell2 (static) ########################### + +set( target kspell2 ) + +set( ${target}_SRCS + configwidget.cpp highlighter.cpp configdialog.cpp + kspell2ui.ui configui.ui +) + +tde_add_library( ${target} STATIC_PIC AUTOMOC + SOURCES ${${target}_SRCS} +) + + +#### kspell2 #################################### + +set( target kspell2 ) + +set( ${target}_SRCS + dialog.cpp +) + +tde_add_library( ${target} SHARED AUTOMOC + SOURCES ${${target}_SRCS} + VERSION 1.0.0 + LINK kspell2-static kspell2base-static kutils-shared + DESTINATION ${LIB_INSTALL_DIR} +) -- cgit v1.2.1