SIOJson.Build.cs 812 B

123456789101112131415161718192021222324252627282930313233343536
  1. // Modifications Copyright 2018-current Getnamo. All Rights Reserved
  2. // Copyright 2014 Vladimir Alyamkin. All Rights Reserved.
  3. using System.IO;
  4. namespace UnrealBuildTool.Rules
  5. {
  6. public class SIOJson : ModuleRules
  7. {
  8. public SIOJson(ReadOnlyTargetRules Target) : base(Target)
  9. {
  10. PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
  11. PrivateIncludePaths.AddRange(
  12. new string[] {
  13. "SIOJson/Private",
  14. // ... add other private include paths required here ...
  15. });
  16. PublicDependencyModuleNames.AddRange(
  17. new string[]
  18. {
  19. "Core",
  20. "CoreUObject",
  21. "Engine",
  22. "HTTP",
  23. "Json",
  24. "JsonUtilities",
  25. "CoreUtility"
  26. // ... add other public dependencies that you statically link with here ...
  27. });
  28. }
  29. }
  30. }