354bd71296
Summary: Allows to quickly start a new wallpaper which also wants to use a custom QML extension. Reviewers: mart Reviewed By: mart Subscribers: #frameworks Tags: #frameworks Differential Revision: https://phabricator.kde.org/D10849
16 lines
494 B
CMake
16 lines
494 B
CMake
add_definitions(-DTRANSLATION_DOMAIN=\"plasma_wallpaper_org.kde.plasma.%{APPNAMELC}\")
|
|
|
|
set(%{APPNAMELC}plugin_SRCS
|
|
%{APPNAMELC}plugin.cpp
|
|
)
|
|
|
|
add_library(%{APPNAMELC}plugin SHARED ${%{APPNAMELC}plugin_SRCS})
|
|
|
|
target_link_libraries(%{APPNAMELC}plugin
|
|
KF5::I18n
|
|
Qt5::Gui
|
|
Qt5::Qml
|
|
)
|
|
install(TARGETS %{APPNAMELC}plugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/private/%{APPNAMELC})
|
|
install(FILES qmldir DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/private/%{APPNAMELC})
|