2025-03-10 09:43:27 +08:00
|
|
|
// Copyright 2023 PICO Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class PICOOpenXREditor : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public PICOOpenXREditor(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"EditorFramework",
|
|
|
|
|
"UnrealEd",
|
2025-07-21 10:22:56 +08:00
|
|
|
"PICOOpenXRRuntimeSettings",
|
|
|
|
|
"OpenXRHMD"
|
2025-03-10 09:43:27 +08:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|