summaryrefslogtreecommitdiffstats
path: root/framework/settings/CMakeLists.txt
blob: d5f54a047fee71c3a9e92474cc8bf100be42c5ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
set(settingsplugin_SRCS
    settingsplugin.cpp
    settings.cpp
)

add_library(settingsplugin SHARED ${settingsplugin_SRCS})

qt5_use_modules(settingsplugin Core Quick Qml)

target_link_libraries(settingsplugin)

install(TARGETS settingsplugin DESTINATION ${FRAMEWORK_INSTALL_DIR})