2016-01-07 08:17:16 -05:00
|
|
|
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
|
2014-04-29 06:45:18 -04:00
|
|
|
|
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
|
|
|
{
|
|
|
|
|
public class ScriptEditorPlugin : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public ScriptEditorPlugin(TargetInfo Target)
|
|
|
|
|
{
|
|
|
|
|
PublicIncludePaths.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
//"Programs/UnrealHeaderTool/Public",
|
|
|
|
|
// ... add other public include paths required here ...
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
// ... add other private include paths required here ...
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"UnrealEd",
|
2014-07-03 03:22:03 -04:00
|
|
|
"AssetTools",
|
|
|
|
|
"ScriptPlugin",
|
|
|
|
|
"ClassViewer",
|
|
|
|
|
"KismetCompiler",
|
2014-07-11 10:19:48 -04:00
|
|
|
"Kismet",
|
|
|
|
|
"BlueprintGraph"
|
2014-04-29 06:45:18 -04:00
|
|
|
// ... add other public dependencies that you statically link with here ...
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
// ... add private dependencies that you statically link with here ...
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
// ... add any modules that your module loads dynamically here ...
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|