mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
16 lines
478 B
C#
16 lines
478 B
C#
using UnrealBuildTool;
|
|
|
|
public class AnalyticsBlueprintLibrary : ModuleRules {
|
|
public AnalyticsBlueprintLibrary(ReadOnlyTargetRules Target) : base(Target) {
|
|
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
bLegacyPublicIncludePaths = false;
|
|
ShadowVariableWarningLevel = WarningLevel.Warning;
|
|
|
|
PublicDependencyModuleNames.AddRange(new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
});
|
|
}
|
|
}
|