You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #preflight 630d013af92416fb926b3c7a #preflight 630d0938e54ec9d5815ebb45 [CL 21696478 by jessica agee in ue5-main branch]
37 lines
716 B
C#
37 lines
716 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class UnrealHeaderTool : ModuleRules
|
|
{
|
|
public UnrealHeaderTool(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePaths.Add("Runtime/Launch/Public");
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Json",
|
|
"Projects"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[]
|
|
{
|
|
// For LaunchEngineLoop.cpp includes
|
|
"Runtime/Launch/Private",
|
|
"Runtime/RHI/Public",
|
|
"Programs/UnrealHeaderTool/Private",
|
|
// For RigVM Defines
|
|
"Runtime/RigVM/Public",
|
|
});
|
|
|
|
bEnableExceptions = true;
|
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
}
|
|
}
|