md.Nuke.Unreal
2.1.16
dotnet add package md.Nuke.Unreal --version 2.1.16
NuGet\Install-Package md.Nuke.Unreal -Version 2.1.16
<PackageReference Include="md.Nuke.Unreal" Version="2.1.16" />
paket add md.Nuke.Unreal --version 2.1.16
#r "nuget: md.Nuke.Unreal, 2.1.16"
// Install md.Nuke.Unreal as a Cake Addin #addin nuget:?package=md.Nuke.Unreal&version=2.1.16 // Install md.Nuke.Unreal as a Cake Tool #tool nuget:?package=md.Nuke.Unreal&version=2.1.16
<div align="center">
Nuke.Unreal
</div>
Simplistic workflow for automating Unreal Engine project tasks embracing Nuke, providing a consistent way to use UE4/5 tools and reducing chores they come with.
- Nuke.Unreal
- Usage
- Features:
- Setting up for a project
- Setting up for plugin development
- Generators
- Custom UBT or UAT arguments from command line
- Targets
- Articles
Usage
[!WARNING]
dotnet
is required to be installed first.
Install via remote script
Navigate to your project with powershell and do
Set-ExecutionPolicy Unrestricted -Scope Process -Force; iex (iwr 'https://raw.githubusercontent.com/microdee/Nuke.Unreal/refs/heads/main/install/install.ps1').ToString()
- (optional) Inherit
IPackageTargets
interface if you want to package the associated Unreal project - (optional) Inherit
IPluginTargets
interface for automating plugin development related steps.
Install manually
Nuke.Unreal is available as a Nuget package and you can just add it to your build project as usual (package ID is md.Nuke.Unreal
)
<details><summary>Install Nuke for an Unreal project</summary>
> dotnet tool install Nuke.GlobalTool --global > nuke :setup select None for solution build project inside Nuke.Targets folder > nuke :add-package md.Nuke.Unreal
</details>
Inherit your Build class from
UnrealBuild
instead ofNukeBuild
and make itpublic
Use
Main () => Plugins.Execute<Build>(Execute);
instead ofMain () => Execute();
No further boilerplate required, run
nuke --plan
to test Nuke.Unreal(optional) Inherit
IPackageTargets
interface if you want to package the associated Unreal project(optional) Inherit
IPluginTargets
interface for automating plugin development related steps.
Your bare-bones minimal Build.cs which will provide the default features of Nuke.Unreal should look like this:
// Build.cs
using Nuke.Common;
using Nuke.Unreal;
using Nuke.Cola.BuildPlugins;
public class Build : UnrealBuild
{
public static int Main () => Plugins.Execute<Build>(Execute);
}
Features:
- All what the great Nuke can offer
- Common Unreal build tasks (generate project files, build editor, cook, package, etc)
> nuke generate > nuke build-editor > nuke cook > nuke package > nuke build --config Shipping > nuke build --config DebugGame Development --target-type Game --platform Android
- Unreal engine location is automatically determined (on Windows at least)
- Prepare plugins for release in Marketplace
> nuke make-release --for-marketplace
- Install C++ libraries (using xrepo)
> nuke use-xrepo --spec "imgui 1.91.1 freetype=true" "vcpkg::ryml[dbg]" "conan::zlib/1.2.11" > nuke generate
- Generate boilerplate code and scaffolding from Scriban templates so no editor needs to be opened
> nuke new-actor --name MyActor > nuke new-plugin --name MyPlugin > nuke new-module --name MyModule > nuke use-cmake --spec MyLibrary etc...
- Generated C# configurators for Unreal tools with gathered documentation. (UBT and UAT)
- Pluggable way to define targets for reusable plugins and modules
Setting up for a project
Nuke.Unreal targets looks for the *.uproject
file automatically and it will use the first one it finds. A *.uproject
is required to be present even for plugin development (more on plugins below). Automatically found project files can be in the sub-folder tree of Nuke's root (which is the folder containing the .nuke
temporary folder) or in parent folders of Nuke's root. If for any reason there are more than one or no *.uproject
files in that area, the developer can specify an explicit location of the associated *.uproject
file.
public override AbsolutePath ProjectPath => RootDirectory / ".." / "MyProject" / "MyProject.uproject";
Only one Unreal project is supported per Nuke.Unreal instance.
Setting up for plugin development
Same is applicable when Nuke.Unreal is used for developing an Unreal Plugin for release. Of course Nuke.Unreal can work with multiple plugins in a project, but the IPluginTargets
interface focuses only on one plugin. Again if the plugin is not trivially locatable then the developer can specify its location explicitly.
public AbsolutePath PluginPath => UnrealPluginsFolder / "MyPlugin" / "MyPlugin.uplugin";
Additional Plugin Targets
However plugins which require some pre-processing might benefit from the "Build plugins" pattern from Nuke.Cola. Simplest method of which is standalone *.nuke.cs
files which are compiled with the build project. Let's have this scaffolding as an example:
<project root>
│ MyUnrealProject.uproject
├── .nuke
├── Content, Build, etc...
├── Nuke.Targets
│ Build.cs
│ Nuke.Targets.csproj (main build script)
├── Plugins
│ └── MyPlugin
│ │ MyPlugin.nuke.cs
│ └── <regular plugin files>
└── Source
└── MyModule
│ MyModule.nuke.cs
└── <source files>
Build interfaces (or in Nuke vocabulary "Build Components") decorated with [ImplicitBuildInterface]
inside these *.nuke.cs
files will automatically contribute to the build graph without further boilerplate.
// MyModule.nuke.cs
using Nuke.Common;
using Nuke.Cola;
using Nuke.Cola.BuildPlugins;
using Nuke.Unreal;
namespace Nuke.MyModule;
[ImplicitBuildInterface]
public interface IMyModuleTargets : INukeBuild
{
Target Foo => _ => _
.DependsOn<IPackageTargets>()
.Executes(() {...});
}
// MyPlugin.nuke.cs
using Nuke.Common;
using Nuke.Cola;
using Nuke.Cola.BuildPlugins;
using Nuke.Unreal;
namespace Nuke.MyPlugin;
[ImplicitBuildInterface]
public interface IMyPluginTargets : INukeBuild
{
Target Foo => _ => _
.Before<UnrealBuild>(u => u.Generate, u => u.Build, u => u.BuildEditor)
.Executes(() {...});
}
Generators
C# code generators for Unreal tools
Nuke.Unreal provides builder pattern Unreal tool configurators in C# which yield a command line for the specified tool. TLDR: the syntax looks like this:
// For UBT:
Unreal.BuildTool(this, _ => _
.Target(UnrealTargetType.Server)
.Platform(UnrealPlatform.LinuxArm64)
.Configuration(UnrealConfig.Development)
.Project(ProjectPath)
.Append(MyExplicitArguments)
)(workingDirectory: MyEnginePath);
// For UAT:
Unreal.AutomationTool(this, _ => _
.BuildPlugin(_ => _
.Plugin(PluginPath)
.Package(targetDir)
.StrictIncludes()
.Unversioned()
)
.Append(self.UatArgs.AsArguments())
)(workingDirectory: MyEnginePath);
As the reader can see from the GIF this introduces a greater discoveribility to the vast functionality of both UAT and UBT which simply was not there before unless the developer followed some trails inside the source code of these tools. In fact the UAT configurator is generated from the actual source code using static code analysis and relying on semantical heuristics as the command line interpretation of UAT is very organic and inconsistent to say the least.
UBT on the other hand had a more disciplined and consistent approach for interpreting the command line, that allowed to rely on purely reflection while gathering arguments with the added feature of typed parameter value input (like numbers, strings and enums). As of time of writing detecting parameter types in a reliable and meaningful way is not possible for UAT.
Using third-party C++ libraries
Nuke.Unreal allows you to set up boilerplate for C++ libraries, or fetch them via a package manager. In all cases the artifacts it generates are placed in the working directory (the current location of your terminal). There are three methods available:
Use library from xrepo
Tt can be as simple as
> nuke use-xrepo --spec "zlib"
or fully specified with version and library options
> nuke use-xrepo --spec "imgui 1.91.1 freetype=true,dx11=true,dx12=true,vulkan=true"
and multiple libraries can be set up in one go
nuke use-xrepo --spec "imgui 1.91.1 freetype=true" "conan::zlib/1.2.11" "vcpkg::spdlog[wchar]" <etc...>
As you can see xrepo also can act like a meta-package-manager for libraries which may not yet been added to the xrepo repository. However their support is more limited than xrepo "native" packages.
use-xrepo
will not fetch the specified libraries immediately but rather generate build plugins for them, which define Prepare-<library>
targets. These are all dependent for Prepare
target of UnrealBuild
which is then dependent for Generate
. So after nuke use-xrepo
running nuke prepare
or nuke generate
will fetch and install properly all libraries used in this way. Having an extra build plugin allows the developer to further customize how the library is used, or add extra necessary operations.
--spec
follows this syntax:
provider::name[comma,separated,features] 1.2.3 comma='separated',options=true
[!NOTE] Conan packages use
/
to delimit version (conan::zlib/1.2.3
) instead of space. VCPKG through xrepo cannot set specific version so attempting to dovcpkg::zlib 1.2.3
will result in failing installation, butvcpkg::zlib
is fine.
[!NOTE] Since Unreal requires
MD
C runtime linkageruntimes='MD'
is implicitly added by Nuke.Unreal.
The Prepare
and the individual Prepare-<library>
targets will generate partial module rule classes for the platforms they were invoked for. This is done because libraries may have different requirements based on which platform they're used on / compiled on. The main MyLibrary.Build.cs
module rule is the place for the developer to add custom logic if that's necessary for the library. Individual MyLibrary.Platform.Build.cs
partial rules set up includes and libs.
[!IMPORTANT] During installation only one platform is considered, and only one platform worth of module rule class will be generated. This means the library should be prepared with all supported platforms or cross-compiled to be able to deploy in a truly cross-platform fashion.
The main benefit of this design is that libraries prepared this way can be further distributed with source but without the need for Nuke.Unreal, or without the need to execute complex behavior from the module rule files. This ensures for example Marketplace/Fab compliance of plugins.
Use library via CMake
nuke use-cmake --spec MyLibrary
This generates build plugins allowing the developer to prepare libraries via CMake. Fetching and storing the library is the responsibility of the developer. The build plugin is prepared for the most trivial use case when compiling a library via CMake but one may need to modify that depending on the design decisions of the library being used.
Use header only library
nuke use-header-only --spec MyLibrary
This will directly generate only the module rule file without the need for extra preparations like with the xrepo or the CMake methods.
Unreal boilerplate templates
Nuke.Unreal provides some targets which creates boilerplate code for common Unreal entities, such as
- Plugins
- Modules
- Unreal Object/Actor/Structs/Interfaces
without the need for opening the Unreal editor or extend heavy weight IDE's. These boilerplate targets work with Scriban templates. The path to these templates can be overridden in the actual Nuke build class in case a project requires further boilerplate. Example:
In any folder in your project do
> nuke new-actor --name MyPreciousActor
This will generate MyPreciousActor.h and ~.cpp at their respective places (taking public and private folders into account) and the minimal actor class boilerplate for unreal.
Use your own templates
Optional Custom templates folders are required to contain generator specific subfolders. If a subfolder doesn't exist for a generator the default will be used. Example:
Given directory scaffolding:
<project root>
├── ...
├── MyTemplates
│ ├── Actor
│ └── Object
└── Nuke.Targets
Build.cs
...
In Nuke.Targets/Build.cs
override TemplatesPath
property
public override AbsolutePath TemplatesPath { get; set; } = RootDirectory / "MyTemplates";
This way Actor and Object generators will have their project specific Scriban templates but the remaining generator types will use the default templates of Nuke.Unreal.
Custom UBT or UAT arguments from command line
Nuke.Unreal supports passing custom arguments to UBT or UAT via --ubt-args
or --uat-args
. These are regular array properties exposed as Nuke target parameters. This means however that doing --ubt-args -DisableUnity
wouldn't actually add -DisableUnity
to the argument list. This happens because Nuke stops parsing the array argument when it hits a -
character. For this reason Nuke.Unreal has a special escape mechanism where ~-
is replaced with -
, or if the argument starts with ~
then that's also replaced with a -
.
So doing --ubt-args ~DisableUnity ~2022
will correctly pass arguments -DisableUnity -2022
to UBT.
This is especially useful for doing temporary debugging with UBT and the compiler: (not an actual usecase)
> nuke build ... --ubt-args "~CompilerArguments='/diagnostics:caret /P /C'" ~DisableUnity
> nuke build ... --ubt-args ~LinkerArguments=/VERBOSE
> nuke build ... --ubt-args ~Preprocess
Targets
In Nuke (and consequently in Nuke.Unreal) a target is a delegate which can build a dependency execution graph with other targets. Nuke's main selling point is how these targets allow complex build compositions and how that can be controlled via command line or profile files.
Nuke.Unreal provides couple of universally useful targets associated with regular chores regarding Unreal Engine development. The above figure shows all convenience targets available and their relationship to each other. This also includes optional targets (coming from IPackageTargets
, IPluginTargets
and IAndroidTargets
)
[!NOTE] All parameters specified here are optional and have a "sensible" default, unless they're marked required.
Global targets (UnrealBuild)
They're available for all project types just from using UnrealBuild
as base class (UnrealBuild.Targets.cs
or UnrealBuild.Templating.cs
).
- Plans:
- TODO:
run
target which allows to run any Unreal program from the version associated with the project with arbitrary command line arguments.
- TODO:
prepare
Run necessary preparations which needs to be done before Unreal tools can handle the project. By default it is empty and the main build project may override it or other Targets can depend on it / hook into it. For example the generated Nuke targets made by use-cmake
or use-xrepo
are dependent for prepare
generate
Generate project files for the default IDE of the current platform (i.e.: Visual Studio or XCode). It is equivalent to right clicking the uproject and selecting "Generate IDE project files".
- Graph:
- Depends on
prepare
- Depends on
- Plans:
- TODO: Provide more arguments for how the project is generated
build-editor
Shorthand for building the editor for current platform.
- Parameters:
--editor-config
default isdevelopnment
- Graph:
- After
prepare
- After
build
Uses UBT to build one of the main project targets (Game, Editor, Client, Server).
- Parameters:
--config
default isdevelopment
--target-type
default isgame
--platform
default is current development platform--ubt-args
see Custom UBT or UAT arguments from command line
- Graph:
cook
Cook Unreal assets for standalone game execution with UAT.
- Parameters:
--config
default isdevelopment
--platform
default is current development platform--uat-args
see Custom UBT or UAT arguments from command line- from
IAndroidTargets
--android-texture-mode
default ismulti
- Graph:
- Depends on
build-editor
- Depends on
clean
Removes auto generated folders of Unreal Engine
- Graph:
- Depends on:
clean-project
clean-plugins
- Related to
clean-deployment
- Depends on:
- Plans:
- TODO: it may be too aggressive, use rather UAT?
ensure-build-plugin-support
Ensure support for plain C# build plugins without the need for CSX or dotnet projects. This only needs to be done once and you can check the results into source control. It will modify the main Nuke project itself, see Additional Plugin Targets or [ImplicitBuildInterface]
plugins of Nuke.Cola
If you used the remote script install method then you don't need to run this target as it's already configured for you.
UnrealBuild.Templating
These targets are used as a development aid for generating boilerplates. See Using third-party C++ libraries and Unreal boilerplate templates for full explanation. Because those sections explain in detail how to use boilerplate generator targets, they will be only listed here:
new-module --name ...
add-code --name ...
new-plugin --name ...
new-actor --name ...
new-interface --name ...
new-object --name ...
new-struct --name ...
new-spec --name ...
use-library --spec ... --library-type ...
use-xrepo --spec ...
use-cmake --spec ...
use-header-only --spec ...
Only special mention is use-library
which is not recommended to be used manually, use either one of use-xrepo
, use-cmake
or use-header-only
. use-library
expects an extra --library-type
which the former targets already fill in.
Packaging (IPackageTargets)
package
Package the project for distribution. Same as packaging the project from the editor.
- Parameters:
--config
default isdevelopment
--editor-config
default isdevelopment
--platform
default is current development platform--output
default is<project root>/Intermediate/Output
--uat-args
see Custom UBT or UAT arguments from command line- from
IAndroidTargets
--android-texture-mode
default ismulti
- Graph:
- Depends on
build-editor
- After
- Depends on
Targeting Android (IAndroidTargets)
- Plans
- TODO: Android targets require some tidy-up and "nicer" interaction with SDK managers (both from the Android SDK Manager and Epic's AutoSDK). Some of the targets are still experimental and probably won't lose that status in the forseeable future
apply-sdk-user-settings
Epic in their infinite wisdom decided to store crucial project breaking build settings in a user scoped shared location (AppData/Local on Windows). This target attempts to make it less shared info, so one project compilation doesn't break the other one if they use different Engine versions and if these settings are not solidified in *Engine.ini
.
- Parameters:
- the default for all of these are determined from engine version and the current user configuration. SDK and NDK versions and API levels can be simple numbers.
--android-build-tool-version
--android-sdk-path
--android-ndk-version
--android-java-path
--adnroid-sdk-api-level
--adnroid-ndk-api-level
- Graph:
- Dependent for
build
cook
- from
IPackageTargets
- Dependent for
clean-intermediate-android
During Android development workflows involving debugging Unreal programs with the generated Gradle project in Android Studio, or developing Java files, Android Studio may modify the generated Gradle project caches in a way that is unexpected for Unreal tools and which may fail in consequent builds. This target clears only the intermediate files generated for Android tooling to avoid such scenario.
This target hooks itself into package and build targets so it's very rare that it has to be executed manually.
- Graph:
- Dependent for
build
- from
IPackageTargets
- Dependent for
sign-apk
In some cases UAT or UBT fails to sign the generated APK with the data provided from [/Script/AndroidRuntimeSettings.AndroidRuntimeSettings]
@ *Engine.ini
, so this target does that manually directly using the Android tooling.
- Parameters:
- the default for all of these are determined from engine version and the current user configuration. SDK and NDK versions and API levels can be simple numbers.
--android-build-tool-version
- Graph:
install-on-android
Install the result of packaging or build on a connected android device, same as the "install APK" generated batch files, but more robust. This may provide an alternative to "Launch on device" feature available in Editor but for cases when for some cursed reason that is not supported by the project, or for cases when a bug only happens in distributed or almost distributed builds.
[!WARNING] Assumes ADB is in PATH
- Parameters:
- the default for all of these are determined from engine version and the current user configuration. SDK and NDK versions and API levels can be simple numbers.
--android-build-tool-version
- Graph:
debug-on-android
Run this project on a connected Android device from the result of packaging or build with the ActivityManager. This may provide an alternative to "Launch on device" feature available in Editor but for cases when for some cursed reason that is not supported by the project, or for cases when a bug only happens in distributed or almost distributed builds.
[!WARNING] Assumes ADB is in PATH
- Graph:
- After
install-on-android
- After
java-development-service
[!CAUTION] This is highly experimental and only developed for specific cases, but with ambitious intents.
This was an attempt to sync Java files copied into the generated Gradle project back to their original source whenever they're changed. At the moment this is very experimental, may not cover all edge cases, and if I ever return to this problem, I'll rewrite this to use symlinks instead which is set up by another target which needs to be run only once (instead of this acting as a file-system watcher service).
Plugin development (IPluginTargets)
[!CAUTION] This is highly experimental and only developed for specific cases, but with ambitious intents. This entire section can be different in future versions.
- Plans:
- This build component will have a lot of changes in the foreseeable future which will allow to better prepare plugins for distribution.
checkout
Switch to the specified Unreal Engine version and platform for plugin development. A CI/CD can call nuke with this target multiple times to deploy the plugin for multiple engine versions.
- Overrides:
IPluginTargets.PluginPath { get; }
if multiple plugins are present in development project
- Parameters:
--unreal-version
REQUIRED
- Graph:
- Depends on
clean
- Depends on
make-release
Convenience target triggering pack-plugin
and make-marketplace-release
.
pack-plugin
Make a pre-built release of the plugin and archive it into a zip file ready to be distributed.
- Overrides:
IPluginTargets.PluginVersion { get; }
IPluginTargets.PluginPath { get; }
if multiple plugins are present in development project
- Parameters:
--platform
default is current development platform--output
default is<project root>/Intermediate/Output
--uat-args
see Custom UBT or UAT arguments from command line
- Graph:
- After
clean-deployment
- After
make-marketplace-release
Prepare a Marketplace complaint archive from the plugin. This yields zip archives in the deployment path, which can then be linked for marketplace/Fab.
[!IMPORTANT] Because Unreal Marketplace is no longer a thing, this will be probably renamed to
make-fab-release
in the future.
- Parameters:
--for-marketplace
REQUIRED switch- This will be deprecated in the future and express the same intention with just the target execution graph
--platform
default is current development platform--output
default is<project root>/Intermediate/Output
Articles
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Goblinfactory.Konsole (>= 6.2.0)
- Humanizer.Core (>= 2.14.1)
- md.Nuke.Cola (>= 2.1.14)
- md.Nuke.Unreal.Ini (>= 2.1.16)
- Microsoft.CodeAnalysis.CSharp.Workspaces (>= 4.3.1)
- Nuke.Common (>= 8.1.4)
- Scriban (>= 5.10.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.1.16 | 40 | 11/27/2024 |
2.1.9 | 42 | 11/26/2024 |
2.1.5 | 77 | 11/12/2024 |
2.1.4 | 83 | 11/12/2024 |
2.1.1 | 83 | 11/8/2024 |
2.1.0 | 81 | 10/29/2024 |
2.0.18 | 108 | 10/6/2024 |
2.0.17 | 104 | 10/1/2024 |
2.0.16 | 97 | 10/1/2024 |
2.0.9 | 103 | 10/1/2024 |
2.0.7 | 98 | 6/10/2024 |
2.0.6 | 98 | 6/6/2024 |
2.0.5 | 127 | 3/15/2024 |
2.0.2 | 106 | 3/7/2024 |
2.0.0 | 117 | 3/6/2024 |
1.2.24 | 187 | 9/6/2023 |
1.2.22 | 157 | 8/31/2023 |
1.2.21 | 164 | 8/29/2023 |
1.2.19 | 154 | 8/29/2023 |
1.2.15 | 153 | 8/2/2023 |
1.2.13 | 175 | 7/20/2023 |
1.2.12 | 169 | 7/20/2023 |
1.2.11 | 156 | 7/20/2023 |
1.2.10 | 180 | 7/20/2023 |
1.2.9 | 178 | 6/14/2023 |
1.2.8 | 185 | 6/4/2023 |
1.2.7 | 185 | 6/4/2023 |
1.2.5 | 183 | 6/4/2023 |
1.2.4 | 207 | 5/17/2023 |
1.1.5 | 759 | 2/8/2023 |
1.1.4 | 301 | 2/8/2023 |
1.1.3 | 276 | 2/8/2023 |
1.1.2 | 297 | 2/8/2023 |
1.0.60 | 357 | 1/18/2023 |
1.0.49 | 381 | 11/10/2022 |
1.0.48 | 391 | 11/9/2022 |
1.0.41 | 472 | 9/26/2022 |
1.0.39 | 499 | 9/26/2022 |
1.0.36 | 496 | 9/15/2022 |
1.0.33 | 498 | 8/14/2022 |
1.0.29 | 477 | 7/27/2022 |
1.0.5 | 583 | 4/13/2022 |
1.0.4 | 548 | 4/13/2022 |
1.0.3 | 579 | 4/13/2022 |
1.0.1 | 556 | 4/12/2022 |
1.0.0 | 584 | 4/12/2022 |