-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlibshare-ui.pro
37 lines (32 loc) · 1.48 KB
/
libshare-ui.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
include (common.pri)
CONFIG += ordered
TEMPLATE = subdirs
SUBDIRS += mdatauri \
share-ui-common \
method-plugins \
widgets \
share-ui \
share-ui-interface \
tests
# Examples
pluginexample.path = $$INSTALL_DOC/share-ui/plugin-example
pluginexample.files = method-plugins/plugin-example.pro \
method-plugins/src/emailmethod.cpp \
method-plugins/src/emailmethod.h \
method-plugins/src/bluetoothmethod.h \
method-plugins/src/bluetoothmethod.cpp \
method-plugins/src/smsmethod.cpp \
method-plugins/src/smsmethod.h \
method-plugins/src/defaultsplugin.h \
method-plugins/src/defaultsplugin.cpp
datauriexample.path = $$INSTALL_DOC/mdatauri/link-share-example
datauriexample.files = examples/link-share/link-share.pro \
examples/link-share/main.cpp \
examples/link-share/page.cpp \
examples/link-share/page.h
serviceexample.path = $$INSTALL_DOC/share-ui/service-example
serviceexample.files = examples/service-example/Share-UI-Example.cpp \
examples/service-example/service-example.pro
INSTALLS += pluginexample \
datauriexample \
serviceexample