-
Notifications
You must be signed in to change notification settings - Fork 64
/
headunit-desktop.qmlproject
63 lines (48 loc) · 1.31 KB
/
headunit-desktop.qmlproject
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
import QmlProject 1.1
Project {
mainFile: "dev/qml/headunit-dev.qml"
QmlFiles {
directory: "modules"
}
QmlFiles {
directory: "dev/qml"
}
QmlFiles {
directory: "themes/default-theme/designer/content"
}
Files {
files: ["themes/default-theme/designer/qtquickcontrols2.conf"]
}
Files {
filter: "qmldir"
directory: "designer/backend"
}
Files {
filter: "qmldir"
directory: "modules"
}
Files {
filter: "*.ttf;*.otf"
directory: "qml"
}
Environment {
QT_QUICK_CONTROLS_CONF: "themes/default-theme/designer/qtquickcontrols2.conf"
QT_AUTO_SCREEN_SCALE_FACTOR: "1"
QMLSCENE_CORE_PROFILE: "true" // Required for macOS, but can create issues on embedded Linux
QT_LOGGING_RULES: "qt.qml.connections=false"
QT_ENABLE_HIGHDPI_SCALING: "1"
/* Useful for debugging
QSG_VISUALIZE=batches
QSG_VISUALIZE=clip
QSG_VISUALIZE=changes
QSG_VISUALIZE=overdraw
*/
}
/* List of plugin directories passed to QML runtime */
importPaths: ["themes/default-theme/qml"]
qdsVersion: "3.0"
multilanguageSupport: true
supportedLanguages: ["en"]
primaryLanguage: "en"
mainUiFile: "dev/qml/PluginObject.qml"
}