1 Star 0 Fork 0

lyzhchc/meson

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
meson.py 906 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python3
# SPDX-License-Identifier: Apache-2.0
# Copyright 2016 The Meson development team
# Copyright © 2023 Intel Corporation
import sys
# Check python version before importing anything else, we might have an older
# Python that would error on f-string syntax for example.
if sys.version_info < (3, 7):
print('Meson works correctly only with python 3.7+.')
print('You have python {}.'.format(sys.version))
print('Please update your environment')
sys.exit(1)
from pathlib import Path
# If we're run uninstalled, add the script directory to sys.path to ensure that
# we always import the correct mesonbuild modules even if PYTHONPATH is mangled
meson_exe = Path(sys.argv[0]).resolve()
if (meson_exe.parent / 'mesonbuild').is_dir():
sys.path.insert(0, str(meson_exe.parent))
from mesonbuild import mesonmain
if __name__ == '__main__':
sys.exit(mesonmain.main())
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/201302713/meson.git
[email protected]:201302713/meson.git
201302713
meson
meson
master

搜索帮助