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.

74 lines
3.3KB

  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. // This suppresses a warning in juce_TargetPlatform.h
  19. #ifndef JUCE_GLOBAL_MODULE_SETTINGS_INCLUDED
  20. #define JUCE_GLOBAL_MODULE_SETTINGS_INCLUDED 1
  21. #endif
  22. #include <juce_core/system/juce_CompilerWarnings.h>
  23. JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wc++98-compat-extra-semi",
  24. "-Wdeprecated-declarations",
  25. "-Wexpansion-to-defined",
  26. "-Wfloat-equal",
  27. "-Wformat",
  28. "-Wmissing-prototypes",
  29. "-Wpragma-pack",
  30. "-Wredundant-decls",
  31. "-Wshadow",
  32. "-Wshadow-field",
  33. "-Wshorten-64-to-32",
  34. "-Wsign-conversion",
  35. "-Wzero-as-null-pointer-constant")
  36. JUCE_BEGIN_IGNORE_WARNINGS_MSVC (6387 6031)
  37. #ifndef NOMINMAX
  38. #define NOMINMAX 1
  39. #endif
  40. #if JUCE_MAC
  41. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module_mac.mm>
  42. #elif JUCE_WINDOWS
  43. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module_win32.cpp>
  44. #elif JUCE_LINUX
  45. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module_linux.cpp>
  46. #endif
  47. #include <juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/coreiids.cpp>
  48. #include <juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/funknown.cpp>
  49. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/samples/vst-utilities/moduleinfotool/source/main.cpp>
  50. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/common/memorystream.cpp>
  51. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/common/readfile.cpp>
  52. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module.cpp>
  53. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/moduleinfo/moduleinfocreator.cpp>
  54. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/moduleinfo/moduleinfoparser.cpp>
  55. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/utility/stringconvert.cpp>
  56. #include <juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstinitiids.cpp>
  57. JUCE_END_IGNORE_WARNINGS_MSVC
  58. JUCE_END_IGNORE_WARNINGS_GCC_LIKE