You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 6478a35ec26e3b2449f1afcf #jira [CL 25745177 by bryan sefcik in ue5-main branch]
34 lines
715 B
C#
34 lines
715 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class MovieSceneCapture : ModuleRules
|
|
{
|
|
public MovieSceneCapture(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
if (Target.Type == TargetType.Editor || Target.Type == TargetType.Program)
|
|
{
|
|
PublicIncludePathModuleNames.Add("ImageWrapper");
|
|
DynamicallyLoadedModuleNames.Add("ImageWrapper");
|
|
}
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"AssetRegistry",
|
|
"AVIWriter",
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"ImageWriteQueue",
|
|
"Json",
|
|
"JsonUtilities",
|
|
"RenderCore",
|
|
"RHI",
|
|
"Slate",
|
|
"SlateCore",
|
|
"AudioMixer"
|
|
}
|
|
);
|
|
}
|
|
}
|