WwiseUEPlatform_Null.Build.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. using System;
  17. using System.IO;
  18. using System.Collections.Generic;
  19. public class WwiseUEPlatform_Null : WwiseUEPlatform
  20. {
  21. public WwiseUEPlatform_Null(ReadOnlyTargetRules in_TargetRules, string in_ThirdPartyFolder) : base(in_TargetRules, in_ThirdPartyFolder)
  22. {
  23. }
  24. public override string GetLibraryFullPath(string LibName, string LibPath)
  25. {
  26. return "";
  27. }
  28. public override bool SupportsAkAutobahn { get { return true; } }
  29. public override bool SupportsCommunication { get { return true; } }
  30. public override bool SupportsDeviceMemory { get { return false; } }
  31. public override string AkPlatformLibDir { get { return "Null"; } }
  32. public override string DynamicLibExtension { get { return ""; } }
  33. public override List<string> GetAdditionalWwiseLibs()
  34. {
  35. return new List<string>();
  36. }
  37. public override List<string> GetPublicSystemLibraries()
  38. {
  39. return new List<string>();
  40. }
  41. public override List<string> GetPublicDelayLoadDLLs()
  42. {
  43. return new List<string>();
  44. }
  45. public override List<string> GetPublicDefinitions()
  46. {
  47. return new List<string>();
  48. }
  49. public override Tuple<string, string> GetAdditionalPropertyForReceipt(string ModuleDirectory)
  50. {
  51. return null;
  52. }
  53. public override List<string> GetPublicFrameworks()
  54. {
  55. return new List<string>();
  56. }
  57. }