lyra_game_ue/Source/LyraEditor/LyraEditor.Build.cs
Goran Lazarevski 3bcab085f8 Initial commit
2025-03-20 11:06:26 +01:00

78 lines
1.8 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LyraEditor : ModuleRules
{
public LyraEditor(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PublicIncludePaths.AddRange(
new string[] {
"LyraEditor"
}
);
PrivateIncludePaths.AddRange(
new string[] {
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"EditorFramework",
"UnrealEd",
"PhysicsCore",
"GameplayTagsEditor",
"GameplayTasksEditor",
"GameplayAbilities",
"GameplayAbilitiesEditor",
"StudioTelemetry",
"LyraGame",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"InputCore",
"Slate",
"SlateCore",
"ToolMenus",
"EditorStyle",
"DataValidation",
"MessageLog",
"Projects",
"DeveloperToolSettings",
"CollectionManager",
"SourceControl",
"Chaos"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
}
);
// Basic setup for External RPC Framework.
// Functionality within framework will be stripped in shipping to remove vulnerabilities.
PrivateDependencyModuleNames.Add("ExternalRpcRegistry");
if (Target.Configuration == UnrealTargetConfiguration.Shipping)
{
PublicDefinitions.Add("WITH_RPC_REGISTRY=0");
PublicDefinitions.Add("WITH_HTTPSERVER_LISTENERS=0");
}
else
{
PrivateDependencyModuleNames.Add("HTTPServer");
PublicDefinitions.Add("WITH_RPC_REGISTRY=1");
PublicDefinitions.Add("WITH_HTTPSERVER_LISTENERS=1");
}
// Generate compile errors if using DrawDebug functions in test/shipping builds.
PublicDefinitions.Add("SHIPPING_DRAW_DEBUG_ERROR=1");
}
}