You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
CookOnTheFly, CookOnTheFlyNetServer, PakFile, PakFileUtilities #rb PJ.Kack #jira UE-166274 #preflight 63c06dc3a06ab115ea7daaf2 [CL 23669256 by Francis Hurteau in ue5-main branch]
26 lines
626 B
C#
26 lines
626 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class CookOnTheFlyNetServer : ModuleRules
|
|
{
|
|
public CookOnTheFlyNetServer(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Warning;
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"TargetPlatform"
|
|
});
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"Sockets",
|
|
"Networking",
|
|
"CookOnTheFly"
|
|
}
|
|
);
|
|
}
|
|
}
|