kdelibs/kioslave/http/CMakeLists.txt
Ivailo Monev 5613e5483c generic: remove redundant build varibles
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-06-17 20:25:52 +03:00

25 lines
455 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
${CURL_LIBRARIES}
kdecore
kio
)
install(TARGETS kio_http DESTINATION ${KDE4_LIBEXEC_INSTALL_DIR})
########### install files ###############
install(
FILES http.protocol https.protocol
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
)