1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Android/iOS: Avoid building LV2

This commit is contained in:
Tom Poole 2022-07-06 12:26:49 +01:00
parent a72f508a47
commit cf8a2d93c0
5 changed files with 5 additions and 5 deletions

View file

@ -23,7 +23,7 @@
============================================================================== ==============================================================================
*/ */
#if JucePlugin_Build_LV2 #if JucePlugin_Build_LV2 && (! (JUCE_ANDROID || JUCE_IOS))
#ifndef _SCL_SECURE_NO_WARNINGS #ifndef _SCL_SECURE_NO_WARNINGS
#define _SCL_SECURE_NO_WARNINGS #define _SCL_SECURE_NO_WARNINGS

View file

@ -23,7 +23,7 @@
============================================================================== ==============================================================================
*/ */
#if JUCE_PLUGINHOST_LV2 #if JUCE_PLUGINHOST_LV2 && (! (JUCE_ANDROID || JUCE_IOS))
#include "juce_LV2Common.h" #include "juce_LV2Common.h"
#include "juce_LV2Resources.h" #include "juce_LV2Resources.h"

View file

@ -26,7 +26,7 @@
namespace juce namespace juce
{ {
#if JUCE_PLUGINHOST_LV2 || DOXYGEN #if (JUCE_PLUGINHOST_LV2 && (! (JUCE_ANDROID || JUCE_IOS))) || DOXYGEN
/** /**
Implements a plugin format for LV2 plugins. Implements a plugin format for LV2 plugins.

View file

@ -229,7 +229,7 @@ private:
#include "format_types/juce_VST3PluginFormat_test.cpp" #include "format_types/juce_VST3PluginFormat_test.cpp"
#endif #endif
#if JUCE_PLUGINHOST_LV2 #if JUCE_PLUGINHOST_LV2 && (! (JUCE_ANDROID || JUCE_IOS))
#include "format_types/juce_LV2PluginFormat_test.cpp" #include "format_types/juce_LV2PluginFormat_test.cpp"
#endif #endif
#endif #endif

View file

@ -23,7 +23,7 @@
============================================================================== ==============================================================================
*/ */
#if JUCE_PLUGINHOST_LV2 #if JUCE_PLUGINHOST_LV2 && (! (JUCE_ANDROID || JUCE_IOS))
#ifndef _CRT_SECURE_NO_WARNINGS #ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS #define _CRT_SECURE_NO_WARNINGS
#endif #endif