~ci-train-bot/ubuntu-settings-components/ubuntu-settings-components-ubuntu-zesty-2397

« back to all changes in this revision

Viewing changes to plugins/Ubuntu/Settings/Components/CMakeLists.txt

  • Committer: Bileto Bot
  • Date: 2017-01-27 15:03:09 UTC
  • mfrom: (155.3.12 filepicker)
  • Revision ID: ci-train-bot@canonical.com-20170127150309-sa1soll41wiqdzul
create file picker component for export  

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
project(UbuntuSettingsComponentsQml)
2
2
 
 
3
pkg_search_module(GLIB REQUIRED glib-2.0)
 
4
include_directories(
 
5
    ${GLIB_INCLUDE_DIRS}
 
6
)
 
7
 
3
8
add_definitions(-DUBUNTUSETTINGSCOMPONENTS_LIBRARY)
4
9
 
5
10
add_library(UbuntuSettingsComponentsQml MODULE
6
11
    plugin.cpp
 
12
    filepickerhelper.cpp
7
13
    serverpropertysynchroniser.cpp
8
14
)
9
15
 
11
17
    Qt5::Core
12
18
    Qt5::Qml
13
19
    Qt5::Quick
 
20
    ${GLIB_LDFLAGS}
14
21
)
15
22
 
16
23
add_usc_plugin(Ubuntu.Settings.Components 0.1 Ubuntu/Settings/Components TARGETS UbuntuSettingsComponentsQml)