You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
https://p4-swarm.epicgames.net/reviews/23796826 #rb devin.doucette #preflight 63cb046f91521d87fefd5dff [CL 23796950 by joe pribele in ue5-main branch]
25 lines
522 B
C#
25 lines
522 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
using System;
|
|
using UnrealBuildTool;
|
|
|
|
public class LowLevelTests : TestModuleRules
|
|
{
|
|
public LowLevelTests(ReadOnlyTargetRules Target) : base(Target, true)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"Cbor",
|
|
"CoreUObject"
|
|
});
|
|
|
|
if (Target.bBuildWithEditorOnlyData)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] { "DesktopPlatform" }
|
|
);
|
|
}
|
|
|
|
UpdateBuildGraphPropertiesFile(new Metadata("Self"), false);
|
|
}
|
|
} |