You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Timing when compiling module with PCH(including compiling PCH): 2.08 secs Timing using shared PCH: 0.85s secs #preflight 62a0bd67521254896fb53923 [CL 20557147 by bryan sefcik in ue5-main branch]
17 lines
353 B
C#
17 lines
353 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class BackgroundHTTPFileHash : ModuleRules
|
|
{
|
|
public BackgroundHTTPFileHash(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
}
|
|
);
|
|
}
|
|
}
|