Files
UnrealEngineUWP/Engine/Source/Runtime/Projects/Projects.Build.cs
2014-03-14 14:13:41 -04:00

25 lines
377 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class Projects : ModuleRules
{
public Projects(TargetInfo Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
}
);
PrivateIncludePaths.AddRange(
new string[]
{
"Runtime/Projects/Private",
}
);
}
}
}