You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb sebastian.nordren #preflight 632b6876e23e50651bf79d06, 632df2c7d51603c54898b28b [CL 22165378 by patrick boutot in ue5-main branch]
40 lines
719 B
C#
40 lines
719 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
using UnrealBuildTool;
|
|
|
|
public class ModelViewViewModelBlueprint : ModuleRules
|
|
{
|
|
public ModelViewViewModelBlueprint(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"DeveloperSettings",
|
|
"Engine",
|
|
"ModelViewViewModel",
|
|
});
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"BlueprintGraph",
|
|
"KismetCompiler",
|
|
"SlateCore",
|
|
"Slate",
|
|
"UMG",
|
|
"UMGEditor",
|
|
"UnrealEd",
|
|
});
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[]
|
|
{
|
|
"ModelViewViewModel/Private",
|
|
});
|
|
}
|
|
}
|