-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
sysroot.toml
118 lines (90 loc) · 2.53 KB
/
sysroot.toml
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# The sysroot for the Airbnb Scanner application.
# OpenSSL #####################################################################
[OpenSSL]
version = "1.1.1g"
[OpenSSL.linux]
install_from_source = false
# Python ######################################################################
[Python]
version = "3.7.8"
install_host_from_source = true
[Python.win]
install_host_from_source = false
# PyQt ########################################################################
[PyQt]
version = "5.15.2"
[PyQt.linux]
installed_modules = ["QtCore", "QtGui", "QtNetwork", "QtWidgets", "QtX11Extras"]
[PyQt.win]
disabled_features = ["PyQt_Desktop_OpenGL"]
installed_modules = ["QtCore", "QtGui", "QtNetwork", "QtWidgets", "QtWinExtras"]
[PyQt.macos]
installed_modules = ["QtCore", "QtGui", "QtNetwork", "QtWidgets", "QtMacExtras"]
[PyQt.android]
disabled_features = ["PyQt_Desktop_OpenGL", "PyQt_Printer"]
installed_modules = ["QtCore", "QtGui", "QtNetwork", "QtWidgets", "QtAndroidExtras"]
[PyQt.ios]
disabled_features = ["PyQt_Desktop_OpenGL", "PyQt_MacOSXOnly", "PyQt_MacCocoaViewContainer", "PyQt_Printer", "PyQt_Process", "PyQt_NotBootstrapped"]
installed_modules = ["QtCore", "QtGui", "QtNetwork", "QtWidgets", "QtMacExtras"]
# Qt ##########################################################################
[Qt]
version = "5.15.2"
edition = "opensource"
configure_options = ["-opengl", "desktop", "-qt-pcre"]
skip = [
"qt3d",
"qtactiveqt",
"qtandroidextras",
"qtcanvas3d",
"qtcharts",
"qtconnectivity",
"qtdatavis3d",
"qtdoc",
"qtgamepad",
"qtgraphicaleffects",
"qtimageformats",
"qtlocation",
"qtmacextras",
"qtmultimedia",
"qtnetworkauth",
"qtpurchasing",
"qtquickcontrols",
"qtquickcontrols2",
"qtremoteobjects",
"qtscript",
"qtscxml",
"qtsensors",
"qtserialbus",
"qtserialport",
"qtspeech",
"qtsvg",
"qttools",
"qttranslations",
"qtvirtualkeyboard",
"qtwayland",
"qtwebchannel",
"qtwebengine",
"qtwebsockets",
"qtwebview",
"qtxmlpatterns"
]
[Qt.linux]
ssl = "openssl-runtime"
[Qt.win]
ssl = "openssl-linked"
static_msvc_runtime = true
# SIP #########################################################################
[SIP]
version = "12.8.1"
module_name = "PyQt5.sip"
# zlib ########################################################################
[zlib]
version = "1.2.11"
install_from_source = false
[zlib.win]
install_from_source = true
static_msvc_runtime = true
# scapy ########################################################################
[scapy]
version = "2.4.3"
install_from_source = true