You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Step verified job 66390cb0242b321d4c9d98a6 #jira UE-214088 [CL 33461215 by chris constantinescu in ue5-main branch]
31 lines
669 B
C#
31 lines
669 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class ChaosUserDataPTTests : TestModuleRules
|
|
{
|
|
static ChaosUserDataPTTests()
|
|
{
|
|
if (InTestMode)
|
|
{
|
|
TestMetadata = new Metadata();
|
|
TestMetadata.TestName = "ChasoUserDataPT";
|
|
TestMetadata.TestShortName = "Chaos User Data PT";
|
|
}
|
|
}
|
|
|
|
public ChaosUserDataPTTests(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"ApplicationCore",
|
|
"Core",
|
|
//"CoreUObject",
|
|
"Chaos",
|
|
"ChaosUserDataPT"
|
|
});
|
|
|
|
//PrivateIncludePaths.Add("FortniteGame/Private");
|
|
//PublicIncludePaths.Add("FortniteGame/Public");
|
|
}
|
|
} |