You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-86949 [CODEREVIEW] marc.audy #ROBOMERGE-SOURCE: CL 11053498 via CL 11053503 via CL 11053525 #ROBOMERGE-BOT: (v637-11041722) [CL 11053536 by michael noland in Main branch]
34 lines
638 B
C#
34 lines
638 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 include
|
|
"Runtime/Launch/Private",
|
|
"Programs/UnrealHeaderTool/Private",
|
|
});
|
|
|
|
bEnableExceptions = true;
|
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Warning;
|
|
}
|
|
}
|