2016-01-07 08:17:16 -05:00
|
|
|
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
|
2014-11-19 07:43:07 -05:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
2014-12-11 07:19:14 -05:00
|
|
|
public class LogVisualizer : ModuleRules
|
2014-11-19 07:43:07 -05:00
|
|
|
{
|
2014-12-11 07:19:14 -05:00
|
|
|
public LogVisualizer(TargetInfo Target)
|
2014-11-19 07:43:07 -05:00
|
|
|
{
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"DesktopPlatform",
|
|
|
|
|
"MainFrame",
|
|
|
|
|
"SequencerWidgets",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PublicIncludePaths.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Runtime/Engine/Classes",
|
2014-12-11 06:23:59 -05:00
|
|
|
"Editor/WorkspaceMenuStructure/Public"
|
2014-11-19 07:43:07 -05:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"Json",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"EditorStyle",
|
|
|
|
|
"Engine",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
"SequencerWidgets",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"DesktopPlatform",
|
|
|
|
|
"MainFrame",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|