~system-settings-touch/ubuntu-system-settings/trunk

« back to all changes in this revision

Viewing changes to plugins/reset/CMakeLists.txt

  • Committer: Bileto Bot
  • Author(s): Ken VanDine
  • Date: 2017-04-06 13:38:08 UTC
  • mfrom: (1772.3.5 readd_launcher_reset)
  • Revision ID: ci-train-bot@canonical.com-20170406133808-381oua9p9ssu5imk
Add reset launcher to the launcher panel (LP: #1677232)

Approved by: Jonas G. Drange, system-apps-ci-bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
set(QML_SOURCES EntryComponent.qml
2
 
    EraseEverything.qml
3
 
    PageComponent.qml
4
 
    ResetAllSettings.qml
5
 
    ResetLauncherHome.qml
6
 
)
7
 
 
8
 
add_library(UbuntuResetPanel MODULE
9
 
  plugin.cpp
10
 
  reset.cpp
11
 
  plugin.h
12
 
  reset.h
13
 
  ${QML_SOURCES}
14
 
)
15
 
qt5_use_modules(UbuntuResetPanel Qml Quick DBus)
16
 
 
17
 
target_link_libraries(UbuntuResetPanel uss-accountsservice)
18
 
 
19
 
set(PLUG_DIR ${PLUGIN_PRIVATE_MODULE_DIR}/Ubuntu/SystemSettings/Reset)
20
 
install(TARGETS UbuntuResetPanel DESTINATION ${PLUG_DIR})
21
 
install(FILES qmldir DESTINATION ${PLUG_DIR})
22
 
install(FILES reset.settings DESTINATION ${PLUGIN_MANIFEST_DIR})
23
 
install(FILES settings-reset.svg DESTINATION ${PLUGIN_MANIFEST_DIR}/icons)
24
 
install(FILES ${QML_SOURCES} DESTINATION ${PLUGIN_QML_DIR}/reset)