Files
UnrealEngineUWP/Engine/Source/Programs/StateGraphTests/StateGraphTests.Build.cs
eric day 54f4629590 StateGraph - State machine framework plugin modeled as a directed graph that supports timeouts, hotfixing, runtime modification, and more.
[REVIEW] [at]michael.atchison [at]chris.varnsverry [at]Stephen.Ma

[CL 26787069 by eric day in ue5-main branch]
2023-08-02 16:44:56 -04:00

20 lines
446 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class StateGraphTests : TestModuleRules
{
public StateGraphTests(ReadOnlyTargetRules Target) : base(Target)
{
OptimizeCode = CodeOptimization.Never;
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"StateGraph"
});
UpdateBuildGraphPropertiesFile(new Metadata() { TestName = "StateGraph", TestShortName = "State Graph"});
}
}