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

15 lines
318 B
C#

using UnrealBuildTool;
public class KhronosOpenXRHeaders : ModuleRules
{
public KhronosOpenXRHeaders(ReadOnlyTargetRules Target) : base(Target)
{
Type = ModuleType.External;
string SourceDirectory = "$(PluginDir)/Source/ThirdParty/KhronosOpenXR/";
PublicIncludePaths.Add(SourceDirectory + "include");
}
}