加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
GenerateProjectFiles.sh 715 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
# Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
set -e
cd "`dirname "$0"`"
if [ ! -f Engine/Build/BatchFiles/Mac/GenerateProjectFiles.sh ]; then
echo "GenerateProjectFiles ERROR: This script does not appear to be located \
in the root UE4 directory and must be run from there."
exit 1
fi
if [ -f Setup.sh ]; then
if [ ! -f .ue4dependencies ]; then
echo "Please run Setup to download dependencies before generating project files."
exit 1
fi
fi
if [ "$(uname)" = "Darwin" ]; then
cd Engine/Build/BatchFiles/Mac
sh ./GenerateLLDBInit.sh
sh ./GenerateProjectFiles.sh $@
else
# assume (GNU/)Linux
cd Engine/Build/BatchFiles/Linux
bash ./GenerateProjectFiles.sh $@
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化