summaryrefslogtreecommitdiffstats
path: root/framework/theme/CMakeLists.txt
blob: 319e3d39790b86b52f1748e837d1883361771f45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
set(themeplugin_SRCS
    themeplugin.cpp
    colorpalette.cpp
    unit.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)