-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathqml-bootstrap.pro
51 lines (45 loc) · 1.37 KB
/
qml-bootstrap.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
TEMPLATE = app
QT += qml quick widgets
SOURCES += main.cpp
RESOURCES += qml.qrc
OTHER_FILES += \
main.qml \
README.md \
src/variables/base.js \
src/variables/buttons.js \
src/variables/colors.js \
src/variables/items.js \
src/variables/badges.js \
src/variables/fontawesome.js \
src/styles/TouchStyle.qml \
src/buttons/ButtonDefault.qml \
src/styles/TouchOutlineStyle.qml \
src/styles/ListDividerStyle.qml \
src/lists/List.qml \
src/lists/DefaultListView.qml \
src/lists/IconListView.qml \
src/styles/DefaulListViewStyle.qml \
src/styles/IconListViewStyle.qml \
src/examples/ButtonPage.qml \
src/examples/DefaultListPage.qml \
src/examples/IconListPage.qml \
src/lists/AvatarListView.qml \
src/styles/AvatarListViewStyle.qml \
src/examples/AvatarListPage.qml \
src/content/TextContent.qml \
src/styles/ThumbnailListViewStyle.qml \
src/lists/ThumbnailListView.qml \
src/examples/ThumbnailListPage.qml \
src/styles/TouchClearStyle.qml \
src/bars/Bar.qml \
src/variables/bars.js \
src/bars/ButtonBar.qml \
src/examples/ButtonBarPage.qml \
src/cards/Card.qml \
src/styles/CardStyle.qml \
src/examples/CardPage.qml
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
QMAKE_MAC_SDK = macosx10.9
# Default rules for deployment.
include(deployment.pri)