HeatMap.Build.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * @Author: namidame
  3. * @Description: A Heatmap Generate Plugin, Supports Heightmap, Texture Coordinate Points And Geographic Location Data.
  4. * @Date: 2023/03/24
  5. */
  6. using UnrealBuildTool;
  7. public class HeatMap : ModuleRules
  8. {
  9. public HeatMap(ReadOnlyTargetRules Target) : base(Target)
  10. {
  11. PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
  12. PublicIncludePaths.AddRange(
  13. new string[] {
  14. // ... add public include paths required here ...
  15. }
  16. );
  17. PrivateIncludePaths.AddRange(
  18. new string[] {
  19. // ... add other private include paths required here ...
  20. }
  21. );
  22. PublicDependencyModuleNames.AddRange(
  23. new string[]
  24. {
  25. "Core", "ProceduralMeshComponent",
  26. // ... add other public dependencies that you statically link with here ...
  27. }
  28. );
  29. PrivateDependencyModuleNames.AddRange(
  30. new string[]
  31. {
  32. "CoreUObject",
  33. "Engine",
  34. "Slate",
  35. "SlateCore",
  36. "GeoReferencing",
  37. // ... add private dependencies that you statically link with here ...
  38. }
  39. );
  40. DynamicallyLoadedModuleNames.AddRange(
  41. new string[]
  42. {
  43. // ... add any modules that your module loads dynamically here ...
  44. }
  45. );
  46. }
  47. }