Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Hotfix: Add missing precompiled setting value for hololens
Browse files Browse the repository at this point in the history
  • Loading branch information
lucoiso committed Aug 14, 2023
1 parent d408027 commit e49ef63
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Source/HttpGPTChatModule/HttpGPTChatModule.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ public HttpGPTChatModule(ReadOnlyTargetRules Target) : base(Target)
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
CppStandard = CppStandardVersion.Cpp17;

if (Target.Platform == UnrealTargetPlatform.HoloLens)
{
PrecompileForTargets = PrecompileTargetsType.Any;
}

PublicDependencyModuleNames.AddRange(new[]
{
"Core",
Expand Down

0 comments on commit e49ef63

Please sign in to comment.