mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
25 lines
455 B
CMake
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}
|
|
)
|