You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
21 lines
526 B
C#
21 lines
526 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System;
|
|
using System.IO;
|
|
|
|
public class TraceLog : ModuleRules
|
|
{
|
|
public TraceLog(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
|
|
bRequiresImplementModule = false;
|
|
PublicIncludePathModuleNames.Add("Core");
|
|
|
|
PrivateDefinitions.Add("SUPPRESS_PER_MODULE_INLINE_FILE"); // This module does not use core's standard operator new/delete overloads
|
|
|
|
bDisableAutoRTFMInstrumentation = true;
|
|
}
|
|
}
|