Difference between revisions of "Building PSUnreal on macOS"

From PSwiki
Jump to navigation Jump to search
Line 33: Line 33:
** After the compilation finishes, select the 'Product > Run' menu item to load the editor.
** After the compilation finishes, select the 'Product > Run' menu item to load the editor.


== Compiling PS Unreal ==
== Building PSUnreal ==
 
Crate PSUnreal dir
  > cd \
  > mkdir PSUnreal
 
install Homebrew and svn command line
  > /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
  > brew options subversion
  > brew install subversion
 
Checkout the svn repository in the directory PSUnreal
  > svn co svn://xxx.xxx.xxx/psunreal/PSUnreal PSUnreal

Revision as of 18:10, 21 May 2020

Reference docs

Compiling Unreal Engine

Note: As of 2020-05-05, you need ~120GB of disk space for a compiled version of the Unreal Engine.

  • Step 3: Install the latest version of Xcode.
    • Install the latest version of Xcode.
  • Step 4: Prepare the Xcode workspace.
    • In the UnrealEngine directory, run the script Setup.command. It downloads 11.5GB of dependencies and may take a while.
    • At the same location, run the script GenerateProjectFiles.bat. It generates the UE4.xcworkspace Xcode workspace.
  • Step 5: Compile Unreal Engine with Xcode.
    • Load the UE4.xcworkspace into Xcode.
    • Select the ShaderCompileWorker > My Mac target in the title bar, then build with Product > Build menu item.
    • Wait for the build to complete.
    • Select the UE4 > My Mac target, and build again.
    • Compiling may take a long time, depending on your system specs.
    • After the compilation finishes, select the 'Product > Run' menu item to load the editor.

Building PSUnreal

Crate PSUnreal dir

 > cd \
 > mkdir PSUnreal

install Homebrew and svn command line

 > /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
 > brew options subversion
 > brew install subversion

Checkout the svn repository in the directory PSUnreal

 > svn co svn://xxx.xxx.xxx/psunreal/PSUnreal PSUnreal