kde-workspace/plasma/applets/weather/CMakeLists.txt
Ivailo Monev 5aa9259429 plasma: weather applet reimplementation
moved from kde-extraapps (the desktop file was salvaged for the
translations), shows icons for both night and day unlike the old
applet:
https://ibb.co/0VsNKjV

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-09-23 14:42:37 +03:00

21 lines
386 B
CMake

project(plasma-applet-weather)
set(weather_SRCS
weather.cpp
)
kde4_add_plugin(plasma_applet_weather ${weather_SRCS})
target_link_libraries(plasma_applet_weather
KDE4::plasma
KDE4::kio
)
install(
TARGETS plasma_applet_weather
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
)
install(
FILES plasma-applet-weather.desktop
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
)