mirror of
https://invent.kde.org/plasma/layer-shell-qt.git
synced 2025-05-28 02:50:21 -04:00
If we are designing our UI's windows from QML, it makes sense that we might want to configure how they're placed from the same place. Everything was already in place but for a few technical bits which this change adds. Signed-off-by: Victoria Fischer <victoria.fischer@mbition.io>
9 lines
407 B
CMake
9 lines
407 B
CMake
# SPDX-FileCopyrightText: 2021 Aleix Pol Gonzalez <aleix.pol_gonzalez@mercedes-benz.com>
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
ecm_add_qml_module(LayerShellQtQml URI "org.kde.layershell")
|
|
target_sources(LayerShellQtQml PRIVATE layershellqtplugin.cpp)
|
|
target_link_libraries(LayerShellQtQml PRIVATE Qt::Qml LayerShellQtInterface)
|
|
|
|
ecm_finalize_qml_module(LayerShellQtQml DESTINATION ${KDE_INSTALL_QMLDIR})
|