You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
14 lines
343 B
Bash
Executable File
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
|
|
|