plasma-framework/tools/plasma-remote-helper/CMakeLists.txt
Kevin Ottens bc53043064 Implement a CLI tool allowing to add remote plasmoids
Use the D-Bus call on the Plasma Desktop shell to create a cli helper
tool allowing you to add a remote widgets based on its URL. So something
like "plasma-remote-helper plasma://host:port/name" will add the
plasmoid "name" exported from "host" to your current activity.
2011-04-29 16:57:47 +02:00

11 lines
253 B
CMake

set(plasma_remote_helper_SRCS
main.cpp
)
kde4_add_executable(plasma-remote-helper ${plasma_remote_helper_SRCS})
target_link_libraries(plasma-remote-helper ${KDE4_KDEUI_LIBS})
install(TARGETS plasma-remote-helper ${INSTALL_TARGETS_DEFAULT_ARGS})