You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #rnx #preflight 62be341a8d5e678759e62f9f [CL 20907767 by Joe Kirchoff in ue5-main branch]
37 lines
720 B
C#
37 lines
720 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.Warning;
|
|
}
|
|
}
|