2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class CoreUObject : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public CoreUObject(TargetInfo Target)
|
|
|
|
|
{
|
|
|
|
|
SharedPCHHeaderFile = "Runtime/CoreUObject/Public/CoreUObject.h";
|
|
|
|
|
|
|
|
|
|
PrivateIncludePaths.Add("Runtime/CoreUObject/Private");
|
|
|
|
|
|
2015-07-13 13:47:48 -04:00
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"TargetPlatform",
|
|
|
|
|
"CookingStats",
|
|
|
|
|
}
|
|
|
|
|
);
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
PublicDependencyModuleNames.Add("Core");
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.Add("Projects");
|
2015-07-13 13:47:48 -04:00
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
2015-07-13 13:47:48 -04:00
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|