You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-184889 #jira UE-184890 #jira UE-185531 #rb none #preflight https://horde.devtools.epicgames.com/job/645b7add6534a4f50496b4e3 #fyi Jason.Walter [CL 25401997 by Dominik Peacock in ue5-main branch]
28 lines
518 B
C#
28 lines
518 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class VirtualCameraEditor : ModuleRules
|
|
{
|
|
public VirtualCameraEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"CinematicCamera",
|
|
"EditorWidgets",
|
|
"Engine",
|
|
"PlacementMode",
|
|
"Settings",
|
|
"UnrealEd",
|
|
"VirtualCamera",
|
|
"VPUtilitiesEditor",
|
|
}
|
|
);
|
|
}
|
|
}
|