代码拉取完成,页面将自动刷新
#!/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@':
# This is stupid but without it, Cython/Python cannot find the openage module.
import os
import sys
sys.path.append(os.getcwd())
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.")
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。