21 lines
364 B
C#
21 lines
364 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class OpenXREditor : ModuleRules
|
|
{
|
|
public OpenXREditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"OpenXRHMD",
|
|
"OpenXRInput"
|
|
}
|
|
);
|
|
}
|
|
}
|