2020-01-09 09:41:51 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-11-19 14:44:59 -05:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
2020-09-24 00:43:27 -04:00
|
|
|
public class VCamInput : ModuleRules
|
2019-11-19 14:44:59 -05:00
|
|
|
{
|
2020-09-24 00:43:27 -04:00
|
|
|
public VCamInput(ReadOnlyTargetRules Target) : base(Target)
|
2019-11-19 14:44:59 -05:00
|
|
|
{
|
|
|
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
|
|
|
|
2020-09-24 00:43:27 -04:00
|
|
|
|
2020-02-19 08:31:07 -05:00
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"Core",
|
|
|
|
|
}
|
|
|
|
|
);
|
2019-11-19 14:44:59 -05:00
|
|
|
|
|
|
|
|
|
2020-02-19 08:31:07 -05:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2019-11-19 14:44:59 -05:00
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
2020-09-24 00:43:27 -04:00
|
|
|
"InputCore",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore"
|
2019-11-19 14:44:59 -05:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|