summaryrefslogtreecommitdiffstats
path: root/accounts/google/CMakeLists.txt
blob: 3732190d889b1b1e9584bb6b8d9615b26c2e58d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
project(kube-accounts-google)

set(SRCS
    googlesettings.cpp
    googleaccountplugin.cpp
)

add_library(googleaccountplugin SHARED ${SRCS})
target_link_libraries(googleaccountplugin
    sink
    frameworkplugin
    Qt5::Core
    Qt5::Quick
    Qt5::Qml
)

install(TARGETS googleaccountplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/accounts/google)
install(FILES metadata.json DESTINATION ${QML_INSTALL_DIR}/org/kube/accounts/google)
install_qml_account(google)