mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
25 lines
481 B
CMake
25 lines
481 B
CMake
project(kioslave-http)
|
|
|
|
include_directories(
|
|
${KDE4_KIO_INCLUDES}
|
|
${CURL_INCLUDE_DIRS}
|
|
)
|
|
|
|
########### next target ###############
|
|
|
|
kde4_add_plugin(kio_http http.cpp)
|
|
|
|
target_link_libraries(kio_http
|
|
${KDE4_KDECORE_LIBS}
|
|
${KDE4_KIO_LIBS}
|
|
${CURL_LIBRARIES}
|
|
)
|
|
|
|
install(TARGETS kio_http DESTINATION ${KDE4_PLUGIN_INSTALL_DIR})
|
|
|
|
########### install files ###############
|
|
|
|
install(
|
|
FILES http.protocol https.protocol
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|