-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.pri
95 lines (80 loc) · 2.59 KB
/
config.pri
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Config.pri file version 2.0. Auto-generated by IDE. Any changes made by user will be lost!
BASEDIR = $$quote($$_PRO_FILE_PWD_)
device {
CONFIG(debug, debug|release) {
profile {
LIBS += -lbbpim
CONFIG += \
config_pri_assets \
config_pri_source_group1
} else {
LIBS += -lbbpim
CONFIG += \
config_pri_assets \
config_pri_source_group1
}
}
CONFIG(release, debug|release) {
!profile {
LIBS += -lbbpim
CONFIG += \
config_pri_assets \
config_pri_source_group1
}
}
}
simulator {
CONFIG(debug, debug|release) {
!profile {
LIBS += -lbbpim
CONFIG += \
config_pri_assets \
config_pri_source_group1
}
}
}
config_pri_assets {
OTHER_FILES += \
$$quote($$BASEDIR/assets/NoteEditor.qml) \
$$quote($$BASEDIR/assets/NoteViewer.qml) \
$$quote($$BASEDIR/assets/ViewerField.qml) \
$$quote($$BASEDIR/assets/images/action_addnote.png) \
$$quote($$BASEDIR/assets/images/action_editnote.png) \
$$quote($$BASEDIR/assets/images/background.png) \
$$quote($$BASEDIR/assets/main.qml)
}
config_pri_source_group1 {
SOURCES += \
$$quote($$BASEDIR/src/NoteBook.cpp) \
$$quote($$BASEDIR/src/NoteEditor.cpp) \
$$quote($$BASEDIR/src/NoteViewer.cpp) \
$$quote($$BASEDIR/src/applicationui.cpp) \
$$quote($$BASEDIR/src/main.cpp)
HEADERS += \
$$quote($$BASEDIR/src/NoteBook.hpp) \
$$quote($$BASEDIR/src/NoteEditor.hpp) \
$$quote($$BASEDIR/src/NoteViewer.hpp) \
$$quote($$BASEDIR/src/applicationui.hpp)
}
INCLUDEPATH += $$quote($$BASEDIR/src)
lupdate_inclusion {
SOURCES += \
$$quote($$BASEDIR/../src/*.c) \
$$quote($$BASEDIR/../src/*.c++) \
$$quote($$BASEDIR/../src/*.cc) \
$$quote($$BASEDIR/../src/*.cpp) \
$$quote($$BASEDIR/../src/*.cxx) \
$$quote($$BASEDIR/../assets/*.qml) \
$$quote($$BASEDIR/../assets/*.js) \
$$quote($$BASEDIR/../assets/*.qs) \
$$quote($$BASEDIR/../assets/images/*.qml) \
$$quote($$BASEDIR/../assets/images/*.js) \
$$quote($$BASEDIR/../assets/images/*.qs)
HEADERS += \
$$quote($$BASEDIR/../src/*.h) \
$$quote($$BASEDIR/../src/*.h++) \
$$quote($$BASEDIR/../src/*.hh) \
$$quote($$BASEDIR/../src/*.hpp) \
$$quote($$BASEDIR/../src/*.hxx)
}
TRANSLATIONS = $$quote($${TARGET}.ts)