You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 63e27d251b44ee7cb1070c1b #rnx [CL 24051131 by chris constantinescu in ue5-main branch]
26 lines
536 B
C#
26 lines
536 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
using System;
|
|
using UnrealBuildTool;
|
|
|
|
public class FoundationTests : TestModuleRules
|
|
{
|
|
public FoundationTests(ReadOnlyTargetRules Target) : base(Target, true)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"Cbor",
|
|
"CoreUObject"
|
|
});
|
|
|
|
if (Target.bBuildWithEditorOnlyData)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"DesktopPlatform"
|
|
});
|
|
}
|
|
|
|
UpdateBuildGraphPropertiesFile(new Metadata("Foundation"), false);
|
|
}
|
|
} |