kdelibs/kio/misc/CMakeLists.txt
Ivailo Monev 5e99d317db kio: remove bogus protocol helpers
do not have anything set as exec thus not executing anything

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-03-29 19:08:30 +03:00

33 lines
712 B
CMake

# for strange kio/foo.h includes
include_directories(BEFORE ${CMAKE_SOURCE_DIR}/kio)
########### next target ###############
add_executable(kmailservice kmailservice.cpp)
target_link_libraries(kmailservice ${KDE4_KDECORE_LIBS})
install(
TARGETS kmailservice
${INSTALL_TARGETS_DEFAULT_ARGS}
)
install(
PROGRAMS kmailservice.desktop
DESTINATION ${KDE4_XDG_APPS_INSTALL_DIR}
)
########### next target ###############
add_executable(ktelnetservice ktelnetservice.cpp)
target_link_libraries(ktelnetservice ${KDE4_KDEUI_LIBS})
install(
TARGETS ktelnetservice
${INSTALL_TARGETS_DEFAULT_ARGS}
)
install(
PROGRAMS ktelnetservice.desktop
DESTINATION ${KDE4_XDG_APPS_INSTALL_DIR}
)