4 Star 0 Fork 0

leegoobin/gvsbuild

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.py 1.59 KB
一键复制 编辑 原始数据 按行查看 历史
Dan Yeaw 提交于 2021-12-30 20:30 . Fix F401 usused imports
# Copyright (C) 2016 - Yevgen Muntyan
# Copyright (C) 2016 - Ignacio Casal Quinteiro
# Copyright (C) 2016 - Arnavion
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
"""Main build script."""
# Verify we can import from the script directory
try:
import gvsbuild.utils.utils # noqa: F401
except ImportError:
# We are probably using an embedded installation
print("Error importing utility, fixing paths ...")
import os
import sys
# Get the script dir
script_dir = os.path.dirname(os.path.realpath(sys.argv[0]))
# and add it at the beginning, emulating the standard python startup
sys.path.insert(0, script_dir)
import gvsbuild.groups # noqa: F401
import gvsbuild.projects # noqa: F401
import gvsbuild.tools # noqa: F401
from gvsbuild.utils.parser import create_parser
if __name__ == "__main__":
parser = create_parser()
args = parser.parse_args()
if hasattr(args, "func"):
args.func(args)
else:
parser.print_help()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/uesoft/gvsbuild.git
[email protected]:uesoft/gvsbuild.git
uesoft
gvsbuild
gvsbuild
master

搜索帮助