水一个(

This commit is contained in:
shenjack 2023-09-19 23:58:12 +08:00
parent f30b4cddcb
commit d538b2ed60
Signed by: shenjack
GPG Key ID: 7B1134A979775551

View File

@ -73,6 +73,7 @@ class CompilerHelper(Options):
use_clang: bool = True # --clang
use_msvc: bool = True # --msvc=latest
use_mingw: bool = False # --mingw64
onefile: bool = False # --onefile
standalone: bool = True # --standalone
use_ccache: bool = True # not --disable-ccache
enable_console: bool = True # --enable-console / --disable-console
@ -180,6 +181,7 @@ class CompilerHelper(Options):
cmd_list += format_cmd('--msvc=latest' if self.use_msvc else None)
cmd_list += format_cmd('--mingw64' if self.use_mingw else None)
cmd_list += format_cmd('--standalone' if self.standalone else None)
cmd_list += format_cmd('--onefile' if self.onefile else None)
cmd_list += format_cmd('--disable-ccache' if not self.use_ccache else None)
cmd_list += format_cmd('--show-progress' if self.show_progress else None)