29 lines
653 B
C#
29 lines
653 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class IOSAdvertising : ModuleRules
|
|
{
|
|
public IOSAdvertising( ReadOnlyTargetRules Target ) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
// ... add other public dependencies that you statically link with here ...
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Advertising",
|
|
"ApplicationCore"
|
|
// ... add private dependencies that you statically link with here ...
|
|
}
|
|
);
|
|
PublicIncludePathModuleNames.Add("Advertising");
|
|
}
|
|
}
|
|
}
|