HttpLibraryBlueprintSupport.Build.cs 420 B

123456789101112131415161718192021
  1. // Copyright 2022 Tracer Interactive, LLC. All Rights Reserved.
  2. namespace UnrealBuildTool.Rules
  3. {
  4. public class HttpLibraryBlueprintSupport : ModuleRules
  5. {
  6. public HttpLibraryBlueprintSupport(ReadOnlyTargetRules Target) : base(Target)
  7. {
  8. PrivateDependencyModuleNames.AddRange(
  9. new string[]
  10. {
  11. "Core",
  12. "CoreUObject",
  13. "Engine",
  14. "BlueprintGraph",
  15. "HttpLibrary"
  16. }
  17. );
  18. }
  19. }
  20. }