You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
26 lines
648 B
C#
26 lines
648 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",
|
|
"Projects",
|
|
"AssetRegistry",
|
|
"RenderCore",
|
|
"libcurl",
|
|
});
|
|
PrivateDependencyModuleNames.Add("PakFile");
|
|
PrivateDependencyModuleNames.Add("Json");
|
|
PrivateDependencyModuleNames.Add("RSA");
|
|
}
|
|
}
|