Files
UnrealEngine/Engine/Source/ThirdParty/mimalloc/mimalloc212.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

20 lines
552 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
// Mimalloc 2.1.2 has not been updated with the Epic modifications yet
// Do not use in Core until this is addressed
public class mimalloc212 : ModuleRules
{
readonly string Version = "2.1.2";
public mimalloc212(ReadOnlyTargetRules Target) : base(Target)
{
Type = ModuleType.External;
PublicSystemIncludePaths.Add(Path.Combine(ModuleDirectory, Version, "include"));
PublicSystemIncludePaths.Add(Path.Combine(ModuleDirectory, Version, "src"));
}
}