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

Introjucer: AAX win32 library linking.

This commit is contained in:
jules 2013-01-13 17:30:47 +00:00
parent b0fadda27c
commit fe355dbae7
2 changed files with 35 additions and 9 deletions

View file

@ -65,6 +65,26 @@
#pragma clang diagnostic pop
#endif
#if JUCE_WINDOWS
#ifndef JucePlugin_AAXLibs_path
#error "You need to define the JucePlugin_AAXLibs_path macro. (This is best done via the introjucer)"
#endif
#if JUCE_DEBUG
#define JUCE_AAX_LIB_PATH "\\Debug\\"
#else
#define JUCE_AAX_LIB_PATH "\\Release\\"
#endif
#if JUCE_64BIT
#define JUCE_AAX_LIB "AAXLibrary_x64.lib"
#else
#define JUCE_AAX_LIB "AAXLibrary.lib"
#endif
#pragma comment(lib, JucePlugin_AAXLibs_path JUCE_AAX_LIB_PATH JUCE_AAX_LIB)
#endif
using juce::Component;
const int32_t juceChunkType = 'juce';