Files
UnrealEngineUWP/Engine/Plugins/Runtime/SmartObjects/Source/SmartObjectsModule/SmartObjectsModule.Build.cs
edwin maynard 483765d326 [Backout] - CL30836941 (backed out due to potential content errors)
[FYI] mikko.mononen
Original CL Desc
-----------------------------------------------------------------
Smart Object: Added parameters for Smart Object Definition
- Added ability to parameterize the SOD using parameters and property copy
- Each Asset stores and shares a variations based parameter hash

#rb Yoan.StAmant

[CL 30842479 by edwin maynard in ue5-main branch]
2024-01-24 09:54:41 -05:00

42 lines
730 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class SmartObjectsModule : ModuleRules
{
public SmartObjectsModule(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.AddRange(
new string[] {
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"DeveloperSettings",
"Engine",
"AIModule",
"GameplayTags",
"GameplayAbilities",
"RHI",
"StructUtils",
"WorldConditions",
"NavigationSystem",
"TargetingSystem"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"RenderCore",
"InputCore"
}
);
SetupGameplayDebuggerSupport(Target);
}
}
}