Skip to content

Instantly share code, notes, and snippets.

@chris-gong
Created February 9, 2022 23:46
Show Gist options
  • Save chris-gong/e538bdbfe3b0f8b57fa909611013cf16 to your computer and use it in GitHub Desktop.
Save chris-gong/e538bdbfe3b0f8b57fa909611013cf16 to your computer and use it in GitHub Desktop.
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class HttpTest : ModuleRules
{
public HttpTest(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "HeadMountedDisplay", "HTTP", "Json" });
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment