mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-25 11:22:50 +00:00
31 lines
599 B
CMake
31 lines
599 B
CMake
include_directories(
|
|
${CMAKE_SOURCE_DIR}/khtml
|
|
${CMAKE_SOURCE_DIR}/kio/httpfilter
|
|
${ZLIB_INCLUDE_DIR}
|
|
)
|
|
|
|
########### next target ###############
|
|
|
|
set(kmultipart_PART_SRCS
|
|
kmultipart.cpp
|
|
${CMAKE_SOURCE_DIR}/kio/httpfilter/httpfilter.cc
|
|
)
|
|
|
|
kde4_add_plugin(kmultipart WITH_PREFIX ${kmultipart_PART_SRCS})
|
|
|
|
target_link_libraries(kmultipart
|
|
${KDE4_KPARTS_LIBS}
|
|
${ZLIB_LIBRARY}
|
|
)
|
|
|
|
install(
|
|
TARGETS kmultipart
|
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
########### install files ###############
|
|
|
|
install(
|
|
FILES kmultipart.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
|
)
|