Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

29 lines
636 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class StateStreamTests : TestModuleRules
{
public StateStreamTests(ReadOnlyTargetRules Target) : base(Target, true)
{
TestMetadata = new Metadata()
{
TestName = "StateStream",
TestShortName = "StateStream",
ReportType = "xml",
SupportedPlatforms = {
UnrealTargetPlatform.Win64,
UnrealTargetPlatform.Linux,
UnrealTargetPlatform.Mac,
UnrealTargetPlatform.Android,
UnrealTargetPlatform.IOS }
};
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"StateStream",
});
}
}