Last active
July 17, 2020 06:24
-
-
Save ntropy83/61b134b6f1adfd6b1c6e234556298eed to your computer and use it in GitHub Desktop.
UE4_linux_installer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UNREAL_DIR="PATH_TO/UnrealEngine" # must be owned by you (don't use sudo) # EDIT !!!!!! | |
set -e | |
cd "$UNREAL_DIR" | |
git pull https://github.com/EpicGames/UnrealEngine.git # must have linked your github account to your epic account. | |
./Setup.sh | |
./GenerateProjectFiles.sh | |
if [ "$1" == "-clean" ] ;then | |
make CrashReportClient-Linux-Shipping \ | |
ShaderCompileWorker \ | |
UnrealPak \ | |
UnrealLightmass \ | |
UnrealFrontend \ | |
UE4Editor \ | |
ARGS=-clean | |
fi | |
make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment