1 Star 0 Fork 1

woaidaima / openage

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
run.py.in 550 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python3
"""
Openage can, and should, be launched via python3 -m openage.
However, for dynamic analysis using LLVM's sanitizer, a self-compiled
executable is needed.
This file is Cythonized with an embedded interpreter, producing ./run,
which satisifies that requirement.
"""
if __name__ == '__main__@SOME_UNDEFINED_VARIABLE_CMAKE_WILL_REMOVE@':
from openage.__main__ import main
main()
else:
print("Running this in the source directory is not supported.",
"Please use `make run` or `bin/run.py` to start instead.")
1
https://gitee.com/394999482/openage.git
git@gitee.com:394999482/openage.git
394999482
openage
openage
master

搜索帮助