kde-workspace/kioslave/remote/CMakeLists.txt
Ivailo Monev 78f0224414 generic: adjust to KIO changes
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-12-06 04:05:59 +02:00

25 lines
527 B
CMake

add_subdirectory( kdedmodule )
if(ENABLE_TESTING)
add_subdirectory(tests)
endif()
set(libkioremote_SRCS kio_remote.cpp remoteimpl.cpp)
########### next target ###############
set(kio_remote_PART_SRCS ${libkioremote_SRCS})
add_executable(kio_remote ${kio_remote_PART_SRCS})
target_link_libraries(kio_remote ${KDE4_KIO_LIBS})
install(TARGETS kio_remote DESTINATION ${KDE4_LIBEXEC_INSTALL_DIR})
########### install files ###############
install(FILES remote.protocol DESTINATION ${KDE4_SERVICES_INSTALL_DIR})