Files
projectlighthouse/Source/ProjectLighthouse/ProjectLighthouse.Build.cs
2024-06-02 18:10:57 +02:00

14 lines
372 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ProjectLighthouse : ModuleRules
{
public ProjectLighthouse(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "EnhancedInput" });
}
}