caseymcc / UE4CMake

Provides a simple way to add a cmake lib to any Unreal Engine 4 (UE4) or 5 (UE5) project.
MIT License
78 stars 14 forks source link

discord

UE4CMake

Provides a simple way to add a cmake lib to any Unreal Engine 4 or 5 project.

It works by setting itself up as an empty plugin, this allows the .cs build files to generate an Assembly that will be included into your project through the plugin system.

Setup

Copy the contents of this repo (or git submodule it) into your UE4/5 project under Plugins/UE4CMake. The directory naming matters as some of the build script is hard coded to use the above naming (as there is no easy way to get the specific plugin directory otherwise). The .uplugin file sets up a plugin with no source, however it allows the CMakeTarget.Build.cs file to be compiled and included with your project.

In your UE4/5 project file .uproject (or if you are building a plugin it should work with your .uplugin file) add CMakeTarget as a plugin as follows

    "FileVersion": 3,
    ...
    "Plugins": [
        {
            "Name": "CMakeTarget",
            "Enabled": true
        }
    ]

This generates the UE4CMake Assembly and links it with your build Assembly which will allow you to call the functions in the UE4CMake build scripts.

From there you can include any modern cmake project (older cmake may/may not have issues). Just call the static function CMakeTarget.add() with the TargetRules, ModuleRules, lib's cmake target name, location of lib and any cmake args.

public class {YourProject}:ModuleRules
{
    public {YourProject}(ReadOnlyTargetRules Target) : base(Target)
    {
        ...
        CMakeTarget.add(Target, this, "{lib's cmake target name}", "{location to cmake lib source}", "{cmake args}", {bool, use system compiler});
        ...
    }
}

Including third-party headers

For legacy reasons, Unreal Engine forces 4-byte packing on Win32. This can result in hard-to-debug alignment issues in classes that use 8-byte types such as doubles or longs. To restore the default packing around third-party code that defines 8-byte types in public structs, use the following macros:

PRAGMA_PUSH_PLATFORM_DEFAULT_PACKING
#include <thirdparty.h>
PRAGMA_POP_PLATFORM_DEFAULT_PACKING

For more info, check the Unreal Engine Docs

How it works

When your project build files are generated, CMakeTarget will create a directory in the Intermediate directory under Intermediate/CMakeTarget/{LibName}. It will generate a CMakeLists.txt file that will link to then added library directory. It will then call cmake to generate the build files for that library under build in the same Intermediate/CMakeTarget/{LibName} directory. Once the cmake generation is complete it will then use cmake to build the library and will fetch the library's include directoryes and additonal libraries required for the target. It will then automatically add those to the ModuleRules variables PublicIncludePaths and PublicAdditionalLibraries. It will also add the cmake target's CMakeLists.txt file and source files to ModuleRules.ExternalDependencies so that changes to the cmake target or it's source will outdate the UE4/5 project which will force a re-build of the cmake target. If the cmake generation or build fails it will add a non existent file to the dependencies forcing the UE4/5 build system to run cmake again on the next build. Once the cmake completes successfully the non existent file will no longer be included.

The above cmake functionality generates an output file in the Intermediate/CMakeTarget/{LibName}/Build directory buildinfo_{BuildType}.ouput, this file includes all the information that is added to the ModuleRules. This same directory includes all the cmake build information that is generated and will include cmake logs if you run into errors.

There is support to get the binary locations of the lib but is not currently setup.

Example

FastNoise2

FastNoise2Example.uproject:

Original

{
    "FileVersion": 3,
    "EngineAssociation": "4.25",
    "Category": "",
    "Description": "",
    "Modules": [
        {
            "Name": "FastNoise2Example",
            "Type": "Runtime",
            "LoadingPhase": "Default"
        }
    ]
}

to

{
    "FileVersion": 3,
    "EngineAssociation": "4.25",
    "Category": "",
    "Description": "",
    "Modules": [
        {
            "Name": "FastNoise2Example",
            "Type": "Runtime",
            "LoadingPhase": "Default"
        }
    ],
    "Plugins": [
        {
            "Name": "CMakeTarget",
            "Enabled": true
        }
    ]
}

FastNoise2Example.Build.cs:

Original

using UnrealBuildTool;

public class FastNoise2Example : ModuleRules
{
    public FastNoise2Example(ReadOnlyTargetRules Target) : base(Target)
    {
        ...
    }
}

to

using UnrealBuildTool;

public class FastNoise2Example : ModuleRules
{
    public FastNoise2Example(ReadOnlyTargetRules Target) : base(Target)
    {
        ...
        CMakeTarget.add(Target, this, "FastNoise", Path.Combine(this.ModuleDirectory, "../Deps/FastNoise2"), "-DFASTNOISE2_NOISETOOL=OFF", true);
        ...
    }
}