Files
UnrealEngineUWP/GenerateProjectFiles.command
2014-03-14 14:13:41 -04:00

14 lines
343 B
Bash
Executable File

#!/bin/sh
cd "`dirname "$0"`"
if [ -f ./Engine/Build/BatchFiles/Mac/GenerateProjectFiles.sh ]; then
pushd ./Engine/Build/BatchFiles/Mac
sh ./GenerateLLDBInit.sh
sh ./GenerateProjectFiles.sh $@
popd
else
echo GenerateProjectFiles ERROR: This script does not appear to be located in the root UE4 directory and must be run from there.
fi