You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
29 lines
572 B
C#
29 lines
572 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class WindowsMixedRealityRuntimeSettings : ModuleRules
|
|
{
|
|
public WindowsMixedRealityRuntimeSettings(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
}
|
|
);
|
|
|
|
if (Target.Type == TargetRules.TargetType.Editor || Target.Type == TargetRules.TargetType.Program)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"TargetPlatform",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|