kdelibs/kioslave/http/CMakeLists.txt
Ivailo Monev bc067dbdfa kio: drop support for putting slaves on hold
with klauncher no longer responsible for KIO slave the next step is to
make them plugins and the feature to put them on hold will be of no value
because QLibrary reuses library/plugin instances and creating a new
slave object will be cheap

in other words the performance will be similar to that of KFileMetaInfo
for which I also wrote the plugins myself - they are pretty quick
compared to what strigi was doing and with more flexible configuration
interface but it took some effort to get there

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-12-06 04:22:23 +02:00

25 lines
481 B
CMake

project(kioslave-http)
include_directories(
${KDE4_KIO_INCLUDES}
${CURL_INCLUDE_DIRS}
)
########### next target ###############
add_executable(kio_http http.cpp)
target_link_libraries(kio_http
${KDE4_KDECORE_LIBS}
${KDE4_KIO_LIBS}
${CURL_LIBRARIES}
)
install(TARGETS kio_http DESTINATION ${KDE4_LIBEXEC_INSTALL_DIR})
########### install files ###############
install(
FILES http.protocol https.protocol
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
)