Feature/python build #25

Merged
shenjackyuanjie merged 28 commits from feature/python_build into main 2023-06-10 19:02:01 +08:00
Showing only changes of commit 9ca58e6397 - Show all commits

View File

@ -27,10 +27,13 @@ class Status(Options):
use_msvc: bool = True # --msvc=latest use_msvc: bool = True # --msvc=latest
use_mingw: bool = False # --mingw64 use_mingw: bool = False # --mingw64
standalone: bool = True # --standalone standalone: bool = True # --standalone
use_ccache: bool = True # not --disable-ccache
show_progress: bool = True # --show-progress show_progress: bool = True # --show-progress
show_memory: bool = False # --show-memory show_memory: bool = False # --show-memory
download_confirm: bool = True # --assume-yes-for-download
company_name: str = 'tool-shenjack-workshop' company_name: str = 'tool-shenjack-workshop'
product_name: str = 'Difficult-Rocket' product_name: str = 'Difficult-Rocket'
product_version: Version product_version: Version
@ -41,9 +44,9 @@ class Status(Options):
follow_import: List[str] = ['pyglet'] follow_import: List[str] = ['pyglet']
no_follow_import: List[str] = ['objprint', 'pillow', 'PIL', 'cffi', 'pydoc', 'numpy'] no_follow_import: List[str] = ['objprint', 'pillow', 'PIL', 'cffi', 'pydoc', 'numpy']
include_data_dir: List[Tuple[Path, Path]] = [(Path('./libs/fonts'), Path('./libs/fonts')), include_data_dir: List[Tuple[str, str]] = [('./libs/fonts', './libs/fonts'),
(Path('./textures'), Path('./textures')), ('./textures', './textures'),
(Path('./configs'), Path('./configs'))] ('./configs', './configs')]
include_packages: List[str] = ['Difficult_Rocket.api'] include_packages: List[str] = ['Difficult_Rocket.api']
def init(self, **kwargs) -> None: def init(self, **kwargs) -> None:
@ -86,16 +89,21 @@ class Status(Options):
cmd_list.append('--lto=yes') cmd_list.append('--lto=yes')
else: else:
cmd_list.append('--lto=no') cmd_list.append('--lto=no')
if self.use_clang: if self.use_clang:
cmd_list.append('--clang') cmd_list.append('--clang')
if self.use_msvc: if self.use_msvc:
cmd_list.append('--msvc=latest') cmd_list.append('--msvc=latest')
if self.standalone: if self.standalone:
cmd_list.append('--standalone') cmd_list.append('--standalone')
if not self.use_ccache:
cmd_list.append('--disable-ccache')
if self.show_progress: if self.show_progress:
cmd_list.append('--show-progress') cmd_list.append('--show-progress')
if self.show_memory: if self.show_memory:
cmd_list.append('--show-memory') cmd_list.append('--show-memory')
if self.download_confirm:
cmd_list.append('--assume-yes-for-download')
cmd_list.append(f"--output-dir={self.output_path.absolute()}") cmd_list.append(f"--output-dir={self.output_path.absolute()}")
@ -114,5 +122,3 @@ class Status(Options):
cmd_list.append(f"{self.src_file}") cmd_list.append(f"{self.src_file}")
return cmd_list return cmd_list