Skip to content

Instantly share code, notes, and snippets.

@pauloxnet
Forked from zhiguangwang/README.md
Created November 14, 2017 16:34
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pauloxnet/e9f1b86505260f1393f31000b8707125 to your computer and use it in GitHub Desktop.
Save pauloxnet/e9f1b86505260f1393f31000b8707125 to your computer and use it in GitHub Desktop.
Building Unreal Engine Game Client and Dedicated Server on Linux.

Building Unreal Engine Game Client and Dedicated Server on Linux

Because the build tools of UE4 works across platforms (Windows, Mac OS, Linux), steps in this article can be applied to Mac OS and Windows as well.

On Windows, You need to replace RunUAT.sh with RunUAT.bat though.

Prerequisites

First, get Unreal Engine 4 sourcecode and export the following environment variables:

  • $UE4_ROOT Engine sourcecode directory, which contains Setup.sh
  • $GAME_UPROJECT Path of the .uproject file of your game project
  • $ARCHIVED_DIR Your build output directory.

Build Steps

Prepare for Engine Build

cd $UE4_ROOT
./Setup.sh
./GenerateProjectFiles.sh

Build the Engine

make UE4Editor UE4Game UnrealPak CrashReportClient ShaderCompileWorker UnrealLightmass

Generate Game Project Files

This will generate Makefiles on Linux (Visual Studio files on Windows, XCode files on Mac OS).

$UE4_ROOT/GenerateProjectFiles.sh -project="$GAME_UPROJECT" -game

Build and Cook the Dedicated Server

$UE4_ROOT/Engine/Build/BatchFiles/RunUAT.sh \
    BuildCookRun -project="$GAME_UPROJECT" \
    -nop4 -build -cook -compressed -stage \
    -noclient -server -serverplatform=Linux -serverconfig=Development \
    -pak -archive -archivedirectory="$ARCHIVED_DIR" \
    -utf8output

Build and Cook the Client

$UE4_ROOT/Engine/Build/BatchFiles/RunUAT.sh \
    BuildCookRun -project="$GAME_UPROJECT" \
    -nop4 -build -cook -compressed -stage \
    -platform=Linux -clientconfig=Development \
    -pak -archive -archivedirectory="$ARCHIVED_DIR" \
    -utf8output

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment