October3d55/Matain/ViveOpenXR/Source/ViveOpenXRPlaneDetection/ViveOpenXRPlaneDetection.Bu...

37 lines
846 B
C#

// Copyright HTC Corporation. All Rights Reserved.
using System.IO;
using UnrealBuildTool;
namespace UnrealBuildTool.Rules
{
public class ViveOpenXRPlaneDetection : ModuleRules
{
public ViveOpenXRPlaneDetection(ReadOnlyTargetRules Target) : base(Target)
{
var EngineDir = Path.GetFullPath(Target.RelativeEnginePath);
PrivateIncludePaths.AddRange(
new string[] {
EngineDir + "/Plugins/Runtime/OpenXR/Source/OpenXRHMD/Private",
// ... add public include paths required here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"ViveOpenXRHMD",
"ViveOpenXRWrapper",
"OpenXRHMD",
"OpenXRAR",
"AugmentedReality",
}
);
}
}
}