Browse Source

Couple of fixes for win32 AAX builds.

tags/2021-05-28
jules 13 years ago
parent
commit
d830f6c5d4
2 changed files with 6 additions and 3 deletions
  1. +2
    -1
      extras/Introjucer/Source/Project/jucer_AudioPluginModule.h
  2. +4
    -2
      modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp

+ 2
- 1
extras/Introjucer/Source/Project/jucer_AudioPluginModule.h View File

@@ -522,7 +522,8 @@ namespace AAXHelpers
if (exporter.isVisualStudio())
{
exporter.msvcTargetSuffix = ".aax";
exporter.msvcTargetSuffix = ".aaxplugin";
exporter.msvcNeedsDLLRuntimeLib = true;
}
else
{


+ 4
- 2
modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp View File

@@ -31,7 +31,9 @@
#if JucePlugin_Build_AAX && (JUCE_INCLUDED_AAX_IN_MM || defined (_WIN32) || defined (_WIN64))
#if defined (__APPLE_CPP__) || defined(__APPLE_CC__)
#ifdef _MSC_VER
#include <windows.h>
#else
#include <Cocoa/Cocoa.h>
#endif
@@ -548,7 +550,7 @@ struct AAXClasses
};
//==============================================================================
AAX_Result JUCE_CDECL GetEffectDescriptions (AAX_ICollection* const collection)
AAX_Result JUCE_CDECL GetEffectDescriptions (AAX_ICollection* collection)
{
AAXClasses::JUCELibraryRefCount libraryRefCount;


Loading…
Cancel
Save