kdelibs/kioslave/http/CMakeLists.txt

26 lines
497 B
Text
Raw Normal View History

2014-11-13 01:04:59 +02:00
project(kioslave-http)
include_directories(
${KDE4_KIO_INCLUDES}
${CURL_INCLUDE_DIRS}
)
2014-11-13 01:04:59 +02:00
########### next target ###############
kde4_add_plugin(kio_http http.cpp khttpheader.cpp)
2014-11-13 01:04:59 +02:00
target_link_libraries(kio_http
${KDE4_KDECORE_LIBS}
${KDE4_KIO_LIBS}
${CURL_LIBRARIES}
)
2014-11-13 01:04:59 +02:00
install(TARGETS kio_http DESTINATION ${KDE4_PLUGIN_INSTALL_DIR})
2014-11-13 01:04:59 +02:00
########### install files ###############
install(
FILES http.protocol https.protocol
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
)