EgonVM e55214a398 Started the project... finally...
Started the project. This right now only includes Meta XR and Android setup with VR template. More improvements to come!
2024-05-06 20:03:14 +03:00

16 lines
348 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class OpenXRHeaders : ModuleRules
{
public OpenXRHeaders(ReadOnlyTargetRules Target) : base(Target)
{
Type = ModuleType.External;
string SourceDirectory = "$(PluginDir)/Source/ThirdParty/OpenXR/";
PublicIncludePaths.Add(SourceDirectory + "include");
}
}