Files
UnrealEngineUWP/Engine/Source/Developer/CollectionManager/CollectionManager.Build.cs

17 lines
288 B
C#
Raw Normal View History

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class CollectionManager : ModuleRules
{
public CollectionManager(TargetInfo Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"SourceControl"
}
);
}
}