The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
3.2KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2022 - Raw Material Software Limited
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 7 End-User License
  8. Agreement and JUCE Privacy Policy.
  9. End User License Agreement: www.juce.com/juce-7-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. #include <juce_core/system/juce_CompilerWarnings.h>
  19. JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wc++98-compat-extra-semi",
  20. "-Wdeprecated-declarations",
  21. "-Wexpansion-to-defined",
  22. "-Wfloat-equal",
  23. "-Wformat",
  24. "-Wmissing-prototypes",
  25. "-Wpragma-pack",
  26. "-Wredundant-decls",
  27. "-Wshadow",
  28. "-Wshadow-field",
  29. "-Wshorten-64-to-32",
  30. "-Wsign-conversion",
  31. "-Wzero-as-null-pointer-constant")
  32. JUCE_BEGIN_IGNORE_WARNINGS_MSVC (6387 6031)
  33. #ifndef NOMINMAX
  34. #define NOMINMAX 1
  35. #endif
  36. #if JUCE_MAC
  37. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module_mac.mm>
  38. #elif JUCE_WINDOWS
  39. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module_win32.cpp>
  40. #elif JUCE_LINUX
  41. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module_linux.cpp>
  42. #endif
  43. #include <juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/coreiids.cpp>
  44. #include <juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/funknown.cpp>
  45. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/samples/vst-utilities/moduleinfotool/source/main.cpp>
  46. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/common/memorystream.cpp>
  47. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/common/readfile.cpp>
  48. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module.cpp>
  49. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/moduleinfo/moduleinfocreator.cpp>
  50. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/moduleinfo/moduleinfoparser.cpp>
  51. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/utility/stringconvert.cpp>
  52. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstinitiids.cpp>
  53. JUCE_END_IGNORE_WARNINGS_MSVC
  54. JUCE_END_IGNORE_WARNINGS_GCC_LIKE