19 lines
414 B
C#
19 lines
414 B
C#
// Copyright 2023 PICO Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class PICOOpenXRRuntimeSettings : ModuleRules
|
|
{
|
|
public PICOOpenXRRuntimeSettings(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine"
|
|
}
|
|
);
|
|
}
|
|
}
|