21 lines
383 B
C#
21 lines
383 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class PortalServices : ModuleRules
|
|
{
|
|
public PortalServices(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
}
|
|
);
|
|
|
|
PublicDefinitions.Add("WITH_PORTAL_SERVICES=1");
|
|
}
|
|
}
|
|
}
|