blob: 4314f662c95d46144ad3a6d7e782c51a650ccc33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
set(themeplugin_SRCS
themeplugin.cpp
colorpalette.cpp
)
add_library(themeplugin SHARED ${themeplugin_SRCS})
qt5_use_modules(themeplugin Core Quick Qml)
target_link_libraries(themeplugin)
install(TARGETS themeplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/theme)
install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/theme)
|