You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb matt.peters, carlmagnus.nordin [FYI] dan.thompson, graham.wihlidal #preflight 6304e4265366f61a426ab19b [CL 21524991 by rune stubbe in ue5-main branch]
21 lines
620 B
C#
21 lines
620 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class UnrealPak : ModuleRules
|
|
{
|
|
public UnrealPak(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePaths.Add("Runtime/Launch/Public");
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "AssetRegistry", "PakFile", "Json", "Projects", "PakFileUtilities", "RSA", "ApplicationCore" });
|
|
|
|
PrivateIncludePaths.Add("Runtime/Launch/Private"); // For LaunchEngineLoop.cpp include
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"Json"
|
|
});
|
|
}
|
|
}
|