Files
UnrealEngineUWP/Engine/Source/Developer/CookedEditor/CookedEditor.Build.cs
aurel cordonnier 1ee4eed9aa Merge from Release-Engine-Test @ 17666640 to UE5/Main
This represents UE4/Main @17638339 and Dev-PerfTest @17636504

[CL 17668579 by aurel cordonnier in ue5-main branch]
2021-09-29 17:45:16 -04:00

45 lines
1.2 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class CookedEditor : ModuleRules
{
public CookedEditor(ReadOnlyTargetRules Target) : base(Target)
{
if (!Target.bCompileAgainstEngine)
{
throw new BuildException("CookedEditor module is meant for cooking only operations, and currently requires Engine to be enabled. This module is being included in a non-Engine-enabled target.");
}
PrivateDependencyModuleNames.AddRange(new string[]
{
"Core",
"AssetRegistry",
"NetCore",
"CoreOnline",
"CoreUObject",
"Projects",
"Engine",
});
PublicDependencyModuleNames.AddRange(new string[]
{
"TargetPlatform",
});
// we currently need to pull in desktop templates that are private
// @todo move these out to Public so they can be extended like this
string EnginePath = Path.GetFullPath(Target.RelativeEnginePath);
PublicIncludePaths.AddRange(
new string[] {
Path.Combine(EnginePath, "Source/Developer/Windows/WindowsTargetPlatform/Private"),
Path.Combine(EnginePath, "Source/Developer/Linux/LinuxTargetPlatform/Private"),
Path.Combine(EnginePath, "Source/Developer/Mac/MacTargetPlatform/Private"),
}
);
}
}