2014-11-13 01:04:59 +02:00
|
|
|
project(kioslave-http)
|
|
|
|
|
2022-02-19 16:40:06 +02:00
|
|
|
include_directories(
|
|
|
|
${KDE4_KIO_INCLUDES}
|
2022-03-29 16:20:47 +03:00
|
|
|
${CURL_INCLUDE_DIRS}
|
2022-02-19 16:40:06 +02:00
|
|
|
)
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
2022-02-21 06:09:45 +02:00
|
|
|
kde4_add_plugin(kio_http http.cpp khttpheader.cpp)
|
2014-11-13 01:04:59 +02:00
|
|
|
|
2022-02-19 16:40:06 +02:00
|
|
|
target_link_libraries(kio_http
|
|
|
|
${KDE4_KDECORE_LIBS}
|
|
|
|
${KDE4_KIO_LIBS}
|
|
|
|
${CURL_LIBRARIES}
|
|
|
|
)
|
2014-11-13 01:04:59 +02:00
|
|
|
|
2021-02-26 20:15:41 +02:00
|
|
|
install(TARGETS kio_http DESTINATION ${KDE4_PLUGIN_INSTALL_DIR})
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
2015-11-02 19:10:29 +02:00
|
|
|
install(
|
2022-02-16 15:45:23 +02:00
|
|
|
FILES http.protocol https.protocol
|
2021-02-26 20:15:41 +02:00
|
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
2015-09-01 01:05:33 +03:00
|
|
|
)
|