You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
19 lines
490 B
Bash
Executable File
19 lines
490 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo
|
|
echo Setting up Unreal Engine 4 project files...
|
|
echo
|
|
|
|
# this is located inside an extra 'Mac' path unlike the Windows variant.
|
|
|
|
if [ ! -d ../../../Source ]; then
|
|
echo GenerateRocketProjectFiles ERROR: This script file does not appear to be located inside the Engine/Build/BatchFiles/Mac directory.
|
|
exit
|
|
fi
|
|
|
|
source SetupMono.sh "`dirname "$0"`"
|
|
|
|
# pass all parameters to UBT
|
|
echo
|
|
mono ../../../../Engine/Binaries/DotNET/UnrealBuildTool.exe -XcodeProjectFile -rocket "$@"
|