32 lines
812 B
C#
32 lines
812 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class SceneStateEventGraph : ModuleRules
|
|
{
|
|
public SceneStateEventGraph(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"BlueprintGraph",
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"SceneStateEvent",
|
|
}
|
|
);
|
|
|
|
if (Target.Type == TargetRules.TargetType.Editor)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"KismetCompiler",
|
|
"UnrealEd",
|
|
});
|
|
}
|
|
}
|
|
} |