Files
UnrealEngineUWP/Engine/Source/Developer/DerivedDataCache/DerivedDataCache.Build.cs
buildmachine 144534d89a Updating CIS Counter
[CL 2649301 by buildmachine in Main branch]
2015-08-10 08:14:45 -04:00

21 lines
537 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class DerivedDataCache : ModuleRules
{
public DerivedDataCache(TargetInfo Target)
{
PrivateDependencyModuleNames.Add("Core");
PrivateDependencyModuleNames.Add("CookingStats");
// Internal (NotForLicensees) module
var DDCUtilsModule = Path.Combine("Developer", "NotForLicensees", "DDCUtils", "DDCUtils.Build.cs");
if (File.Exists(DDCUtilsModule))
{
DynamicallyLoadedModuleNames.Add("DDCUtils");
}
}
}