mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-25 11:22:50 +00:00
23 lines
517 B
CMake
23 lines
517 B
CMake
|
|
include_directories( ${HSPELL_INCLUDE_DIR} )
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(kspell_hspell_PART_SRCS kspell_hspellclient.cpp kspell_hspelldict.cpp )
|
|
|
|
|
|
kde4_add_plugin(kspell_hspell ${kspell_hspell_PART_SRCS})
|
|
|
|
target_link_libraries(kspell_hspell ${KDE4_KDECORE_LIBS} ${HSPELL_LIBRARIES} ${ZLIB_LIBRARY} )
|
|
|
|
install(TARGETS kspell_hspell DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( FILES kspell_hspell.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
|
|
|
|
|
|
|