WwiseReconcile.Build.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*******************************************************************************
  2. The content of this file includes portions of the proprietary AUDIOKINETIC Wwise
  3. Technology released in source code form as part of the game integration package.
  4. The content of this file may not be used without valid licenses to the
  5. AUDIOKINETIC Wwise Technology.
  6. Note that the use of the game engine is subject to the Unreal(R) Engine End User
  7. License Agreement at https://www.unrealengine.com/en-US/eula/unreal
  8. License Usage
  9. Licensees holding valid licenses to the AUDIOKINETIC Wwise Technology may use
  10. this file in accordance with the end user license agreement provided with the
  11. software or, alternatively, in accordance with the terms contained
  12. in a written agreement between you and Audiokinetic Inc.
  13. Copyright (c) 2023 Audiokinetic Inc.
  14. *******************************************************************************/
  15. using UnrealBuildTool;
  16. public class WwiseReconcile : ModuleRules
  17. {
  18. public WwiseReconcile(ReadOnlyTargetRules Target) : base(Target)
  19. {
  20. PrivateDependencyModuleNames.AddRange(new[]
  21. {
  22. "AkAudio",
  23. "WwiseSoundEngine",
  24. "WwiseResourceLoader",
  25. "WwiseProjectDatabase",
  26. "WwiseUtils",
  27. "AssetTools",
  28. "EditorStyle",
  29. "InputCore",
  30. "MainFrame",
  31. "Slate",
  32. "SlateCore"
  33. });
  34. PublicDependencyModuleNames.AddRange(new[]
  35. {
  36. "Core",
  37. "CoreUObject",
  38. "Engine",
  39. "UnrealEd",
  40. }
  41. );
  42. #if UE_5_3_OR_LATER
  43. bLegacyParentIncludePaths = false;
  44. CppStandard = CppStandardVersion.Default;
  45. #endif
  46. }
  47. }