You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb per.larsson #rnx #ROBOMERGE-AUTHOR: carlmagnus.nordin #ROBOMERGE-SOURCE: CL 17517167 via CL 17517189 via CL 17517191 via CL 17519703 via CL 17519714 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Test -> Main) (v870-17433530) [CL 17519729 by carlmagnus nordin in ue5-main branch]
26 lines
638 B
C#
26 lines
638 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class IoStoreUtilities : ModuleRules
|
|
{
|
|
public IoStoreUtilities (ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePathModuleNames.AddRange(new string[] {
|
|
"TargetPlatform",
|
|
});
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"AssetRegistry",
|
|
"DerivedDataCache",
|
|
"RenderCore",
|
|
"libcurl",
|
|
});
|
|
PrivateDependencyModuleNames.Add("PakFile");
|
|
PrivateDependencyModuleNames.Add("Json");
|
|
PrivateDependencyModuleNames.Add("RSA");
|
|
}
|
|
}
|