15 lines
277 B
C#
15 lines
277 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class SwitchboardCommon : ModuleRules
|
|
{
|
|
public SwitchboardCommon(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
});
|
|
}
|
|
}
|