JsonLibraryBlueprintSupport.Build.cs 514 B

1234567891011121314151617181920212223242526
  1. // Copyright 2022 Tracer Interactive, LLC. All Rights Reserved.
  2. namespace UnrealBuildTool.Rules
  3. {
  4. public class JsonLibraryBlueprintSupport : ModuleRules
  5. {
  6. public JsonLibraryBlueprintSupport(ReadOnlyTargetRules Target) : base(Target)
  7. {
  8. PrivateDependencyModuleNames.AddRange(
  9. new string[]
  10. {
  11. "Core",
  12. "CoreUObject",
  13. "Engine",
  14. "UnrealEd",
  15. "Slate",
  16. "SlateCore",
  17. "KismetWidgets",
  18. "KismetCompiler",
  19. "BlueprintGraph",
  20. "JsonLibrary"
  21. }
  22. );
  23. }
  24. }
  25. }