Android build settings + metaxr

This commit is contained in:
2025-05-14 14:00:02 +03:00
parent 6a2bb7475e
commit d5aa21f55c
594 changed files with 200530 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
// Copyright (c) Meta Platforms, Inc. and affiliates.
#pragma once
// DO NOT REMOVE
// This include is needed in order to have the latest openxr header (from Thirdparty/KhronosOpenXR/)
// Without it, IOpenXRExtensionPlugin.h will include the openxr header from the Engine itself, which is outdated.
#include "khronos/openxr/openxr.h"
#include "IOpenXRExtensionPlugin.h"
class IOculusXRExtensionPlugin : public IOpenXRExtensionPlugin
{
public:
void RegisterOpenXRExtensionPlugin()
{
#if defined(WITH_OCULUS_BRANCH)
RegisterOpenXRExtensionModularFeature();
#endif
}
};