Files
UnrealEngineUWP/Engine/Source/Runtime/CrunchCompression/CrunchCompression.build.cs
ben marsh 11f022162f Copying //UE4/Dev-Rendering to Dev-Main (//UE4/Dev-Main) [at] 6944469
#rb none
#rnx

#ROBOMERGE-OWNER: ben.marsh
#ROBOMERGE-AUTHOR: rolando.caloca
#ROBOMERGE-SOURCE: CL 6944849 in //UE4/Main/...
#ROBOMERGE-BOT: BUILD (Main -> Dev-Build) (v367-6836689)

[CL 7089689 by ben marsh in Dev-Build branch]
2019-06-19 08:52:32 -04:00

22 lines
487 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class CrunchCompression : ModuleRules
{
public CrunchCompression(ReadOnlyTargetRules Target) : base(Target)
{
// PrivateIncludePaths.Add("Runtime/CrunchCompression/Private");
PublicIncludePaths.Add("Runtime/CrunchCompression/Public");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"Crunch"
}
);
}
}
}