Files
UnrealEngineUWP/Engine/Source/Developer/ExternalImagePicker/ExternalImagePicker.Build.cs
T

24 lines
496 B
C#
Raw Normal View History

2019-12-26 15:32:37 -05:00
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ExternalImagePicker : ModuleRules
{
public ExternalImagePicker(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"Slate",
"SlateCore",
"DesktopPlatform",
"ImageWrapper",
"EditorStyle",
"InputCore",
"PropertyEditor", // for 'reset to default'
}
);
}
}