h5_0824.Build.cs 761 B

123456789101112131415161718192021222324
  1. // Copyright Epic Games, Inc. All Rights Reserved.
  2. using UnrealBuildTool;
  3. public class h5_0824 : ModuleRules
  4. {
  5. public h5_0824(ReadOnlyTargetRules Target) : base(Target)
  6. {
  7. PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
  8. PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" });
  9. PrivateDependencyModuleNames.AddRange(new string[] { });
  10. // Uncomment if you are using Slate UI
  11. // PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
  12. // Uncomment if you are using online features
  13. // PrivateDependencyModuleNames.Add("OnlineSubsystem");
  14. // To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true
  15. }
  16. }