@@ -699,12 +699,12 @@ def _set_install_qt_parser(self, install_qt_parser):
699
699
def _set_install_tool_parser (self , install_tool_parser ):
700
700
install_tool_parser .set_defaults (func = self .run_install_tool )
701
701
install_tool_parser .add_argument (
702
- "host" , choices = ["linux" , "linux_arm64" , "mac" , "windows" , "windows_arm64" ], help = "host os name"
702
+ "host" , choices = ["linux" , "linux_arm64" , "mac" , "windows" , "windows_arm64" , "all_os" ], help = "host os name"
703
703
)
704
704
install_tool_parser .add_argument (
705
705
"target" ,
706
706
default = None ,
707
- choices = ["desktop" , "winrt" , "android" , "ios" ],
707
+ choices = ["desktop" , "winrt" , "android" , "ios" , "wasm" , "qt" ],
708
708
help = "Target SDK." ,
709
709
)
710
710
install_tool_parser .add_argument ("tool_name" , help = "Name of tool such as tools_ifw, tools_mingw" )
@@ -752,7 +752,7 @@ def make_parser_sde(cmd: str, desc: str, action, is_add_kde: bool, is_add_module
752
752
def make_parser_list_sde (cmd : str , desc : str , cmd_type : str ):
753
753
parser = subparsers .add_parser (cmd , description = desc )
754
754
parser .add_argument (
755
- "host" , choices = ["linux" , "linux_arm64" , "mac" , "windows" , "windows_arm64" ], help = "host os name"
755
+ "host" , choices = ["linux" , "linux_arm64" , "mac" , "windows" , "windows_arm64" , "all_os" ], help = "host os name"
756
756
)
757
757
parser .add_argument (
758
758
"qt_version_spec" ,
@@ -803,7 +803,7 @@ def _make_list_qt_parser(self, subparsers: argparse._SubParsersAction):
803
803
"target" ,
804
804
nargs = "?" ,
805
805
default = None ,
806
- choices = ["desktop" , "winrt" , "android" , "ios" , "wasm" ],
806
+ choices = ["desktop" , "winrt" , "android" , "ios" , "wasm" , "qt" ],
807
807
help = "Target SDK. When omitted, this prints all the targets available for a host OS." ,
808
808
)
809
809
list_parser .add_argument (
@@ -883,13 +883,13 @@ def _make_list_tool_parser(self, subparsers: argparse._SubParsersAction):
883
883
"$ aqt list-tool mac desktop ifw --long # print tool variant names with metadata for QtIFW\n " ,
884
884
)
885
885
list_parser .add_argument (
886
- "host" , choices = ["linux" , "linux_arm64" , "mac" , "windows" , "windows_arm64" ], help = "host os name"
886
+ "host" , choices = ["linux" , "linux_arm64" , "mac" , "windows" , "windows_arm64" , "all_os" ], help = "host os name"
887
887
)
888
888
list_parser .add_argument (
889
889
"target" ,
890
890
nargs = "?" ,
891
891
default = None ,
892
- choices = ["desktop" , "winrt" , "android" , "ios" ],
892
+ choices = ["desktop" , "winrt" , "android" , "ios" , "wasm" , "qt" ],
893
893
help = "Target SDK. When omitted, this prints all the targets available for a host OS." ,
894
894
)
895
895
list_parser .add_argument (
0 commit comments