2018-12-14 13:41:00 -05:00
|
|
|
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
2015-09-01 12:27:21 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class BlueprintNativeCodeGen : ModuleRules
|
|
|
|
|
{
|
2017-01-30 16:52:08 -05:00
|
|
|
public BlueprintNativeCodeGen(ReadOnlyTargetRules Target) : base(Target)
|
2015-09-01 12:27:21 -04:00
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"DesktopPlatform",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"Slate",
|
2015-09-04 13:35:03 -04:00
|
|
|
"EditorStyle",
|
|
|
|
|
"KismetCompiler",
|
|
|
|
|
"Json",
|
|
|
|
|
"JsonUtilities",
|
2015-09-06 07:59:37 -04:00
|
|
|
"BlueprintCompilerCppBackend",
|
2015-09-24 18:57:23 -04:00
|
|
|
"GameProjectGeneration",
|
|
|
|
|
"Projects",
|
2015-11-25 18:47:20 -05:00
|
|
|
"Kismet",
|
2017-03-14 15:48:33 -04:00
|
|
|
"DesktopWidgets",
|
|
|
|
|
"TargetPlatform"
|
|
|
|
|
}
|
2015-09-01 12:27:21 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"AssetRegistry",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|