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 5619699ebf - Show all commits

View File

@ -21,13 +21,6 @@ if __name__ == '__main__':
# 修改 python 执行文件 为 运行时的 python # 修改 python 执行文件 为 运行时的 python
compiler.python_cmd = sys.executable compiler.python_cmd = sys.executable
# 检测 --output xx 参数
if '--output' in sys.argv:
# 输入的是输出目录
compiler.output_path = sys.argv[sys.argv.index('--output') + 1]
sys.argv.remove('--output')
sys.argv.remove(compiler.output_path)
# 检测 --github 参数 # 检测 --github 参数
is_github = False is_github = False
if '--github' in sys.argv: if '--github' in sys.argv:
@ -36,6 +29,13 @@ if __name__ == '__main__':
compiler.show_progress = False compiler.show_progress = False
compiler.output_path = Path('./build/github') compiler.output_path = Path('./build/github')
# 检测 --output xx 参数
if '--output' in sys.argv:
# 输入的是输出目录
compiler.output_path = sys.argv[sys.argv.index('--output') + 1]
sys.argv.remove('--output')
sys.argv.remove(compiler.output_path)
print(compiler.output_path) print(compiler.output_path)
print(compiler) print(compiler)