October3d55/M/PICOXRPlugin/Source/PICOXREyeTracker/PICOXREyeTracker.Build.cs

42 lines
1005 B
C#
Raw Normal View History

2025-07-29 14:53:32 +08:00
// Copyright PICO Technology Co., Ltd. All rights reserved.
// This plugin incorporates portions of the Unreal® Engine. Unreal® is a trademark or registered trademark of Epic Games, Inc. in the United States of America and elsewhere.
// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class PICOXREyeTracker : ModuleRules
{
public PICOXREyeTracker(ReadOnlyTargetRules Target) : base(Target)
{
if (Target.Platform == UnrealTargetPlatform.Win64 ||
Target.Platform == UnrealTargetPlatform.Android)
{
PrivateIncludePaths.AddRange(
new string[] {
"PICOXRHMD/Private",
});
PublicDependencyModuleNames.AddRange(
new string[]
{
"InputDevice",
"EyeTracker",
"PXRPlugin",
"PICOXRHMD",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"InputCore",
}
);
}
}
}
}