You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #jira UE-148682 #rnx #preflight 6255c20769015afc27b9b42f [CL 19725948 by Stu McKenna in ue5-main branch]
35 lines
807 B
C#
35 lines
807 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class VectorVM : ModuleRules
|
|
{
|
|
public VectorVM(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject"
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject"
|
|
});
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
"Runtime/Engine/Classes/Curves"
|
|
});
|
|
|
|
PublicDefinitions.AddRange(
|
|
new string[]
|
|
{
|
|
"VECTORVM_SUPPORTS_EXPERIMENTAL=0",
|
|
"VECTORVM_SUPPORTS_LEGACY=1"
|
|
});
|
|
}
|
|
}
|