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
parser.add_argument("--qt-root", default="~/Qt", help="specify the root directory for locating QT on this system (default: ~/Qt) ")
60
63
else:
61
64
parser.add_argument("--qt-root", default="~/Qt", help="specify the root directory for locating QT on this system (default: ~/Qt) ")
65
+
parser.add_argument("--disable-extra-qt-lib-deploy", action="store_true", help="prevent extra Qt library files (XCB and ICU libs) from being copied during post build step")
66
+
parser.add_argument("--qt-system", action="store_true", help="use the system-installed version of QT")
62
67
parser.add_argument("--qt", default="5.15.2", help="specify the version of QT to be used with the script (default: 5.15.2)" )
63
68
parser.add_argument("--clean", action="store_true", help="delete any directories created by this script")
64
69
parser.add_argument("--no-qt", action="store_true", help="build a headless version (not applicable for all products)")
@@ -69,7 +74,6 @@
69
74
parser.add_argument("--build-jobs", default="4", help="number of simultaneous jobs to run during a build (default = 4)")
70
75
parser.add_argument("--analyze", action="store_true", help="perform static analysis of code on build (currently VS2017 only)")
71
76
parser.add_argument("--vscode", action="store_true", help="generate CMake options into VsCode settings file for this project")
72
-
parser.add_argument("--disable-extra-qt-lib-deploy", action="store_true", help="prevent extra Qt library files (XCB and ICU libs) from being copied during post build step")
73
77
ifsupport_32_bit_build:
74
78
parser.add_argument("--platform", default="x64", choices=["x64", "x86"], help="specify the platform (32 or 64 bit)")
0 commit comments