AudiokineticTools.Build.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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 AudiokineticTools : ModuleRules
  17. {
  18. public AudiokineticTools(ReadOnlyTargetRules Target) : base(Target)
  19. {
  20. PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
  21. PrivateIncludePaths.Add("AudiokineticTools/Private");
  22. PrivateIncludePaths.Add("AkAudio/Classes/GTE");
  23. PrivateIncludePathModuleNames.AddRange(
  24. new string[]
  25. {
  26. "TargetPlatform",
  27. "MainFrame",
  28. "MovieSceneTools"
  29. }
  30. );
  31. PublicIncludePathModuleNames.AddRange(
  32. new string[]
  33. {
  34. "AssetTools",
  35. "ContentBrowser",
  36. "ToolMenus"
  37. }
  38. );
  39. PrivateDependencyModuleNames.AddRange(
  40. new string[]
  41. {
  42. "Core",
  43. "CoreUObject",
  44. "Engine",
  45. "ContentBrowser",
  46. #if UE_4_26_OR_LATER
  47. "ContentBrowserData",
  48. #endif
  49. "DesktopPlatform",
  50. "DesktopWidgets",
  51. #if UE_5_0_OR_LATER
  52. "DeveloperToolSettings",
  53. #endif
  54. "DirectoryWatcher",
  55. #if UE_5_0_OR_LATER
  56. "EditorFramework",
  57. #endif
  58. "EditorStyle",
  59. "InputCore",
  60. "Json",
  61. "LevelEditor",
  62. "MovieScene",
  63. "MovieSceneTools",
  64. "MovieSceneTracks",
  65. "Projects",
  66. "PropertyEditor",
  67. "RenderCore",
  68. #if UE_4_26_OR_LATER
  69. "RHI",
  70. #endif
  71. "Sequencer",
  72. "SharedSettingsWidgets",
  73. "Slate",
  74. "SlateCore",
  75. "SourceControl",
  76. "ToolMenus",
  77. "UnrealEd",
  78. "WorkspaceMenuStructure",
  79. "XmlParser",
  80. "AkAudio",
  81. "WwiseProjectDatabase",
  82. "WwiseResourceLoader",
  83. "WwiseSoundEngine",
  84. "WwiseUtils"
  85. }
  86. );
  87. if (Target.bBuildWithEditorOnlyData)
  88. {
  89. PrivateDependencyModuleNames.AddRange(
  90. new string[]
  91. {
  92. "WwiseProjectDatabase",
  93. "WwiseReconcile"
  94. }
  95. );
  96. }
  97. #if UE_5_3_OR_LATER
  98. bLegacyParentIncludePaths = false;
  99. CppStandard = CppStandardVersion.Default;
  100. #endif
  101. }
  102. }