24 lines
466 B
C#
24 lines
466 B
C#
// 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",
|
|
"ImageCore",
|
|
"ImageWrapper",
|
|
|
|
"PropertyEditor", // for 'reset to default'
|
|
}
|
|
);
|
|
}
|
|
}
|