You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyqtdeploy/sysroot/plugins/qt5.py
+7-7
Original file line number
Diff line number
Diff line change
@@ -35,21 +35,21 @@ class Qt5Component(ComponentBase):
35
35
36
36
# The component options.
37
37
options= [
38
-
ComponentOption('configure_options', list,
38
+
ComponentOption('configure_options', type=list,
39
39
help="The additional options to be passed to 'configure' when building from source."),
40
-
ComponentOption('disabled_features', list,
40
+
ComponentOption('disabled_features', type=list,
41
41
help="The features that are disabled when building from source."),
42
-
ComponentOption('qt_dir',str,
42
+
ComponentOption('qt_dir',
43
43
help="The pathname of the directory containing an existing Qt5 installation to use. If it is not specified then the installation will be built from source."),
44
-
ComponentOption('ssl',str,
44
+
ComponentOption('ssl',
45
45
values=['openssl-linked', 'openssl-runtime',
46
46
'securetransport'],
47
47
help="Enable SSL support."),
48
-
ComponentOption('skip', list,
48
+
ComponentOption('skip', type=list,
49
49
help="The Qt modules to skip when building from source."),
50
-
ComponentOption('source',str,
50
+
ComponentOption('source',
51
51
help="The archive containing the Qt5 source code if an existing installation is not to be used."),
52
-
ComponentOption('static_msvc_runtime', bool,
52
+
ComponentOption('static_msvc_runtime', type=bool,
53
53
help="Set if the MSVC runtime should be statically linked."),
0 commit comments