Post-build script and AAX on Mac

Howdy,
Introjucer’s post-build script which copies the plugin to the various places has this line:

copyAAX=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'GetEffectDescriptions' | wc -l`

It doesn’t seem to notice the existence of AAX, as GetEffectDescriptions is not an exposed symbol. Changing it to “ACFStartup” or removing the “-g” in “nm -g” solves this.

Cheers!
And looking forward to cya at NAMM and hear what you’ve been working on lately :slight_smile:
Yair

Is there going to be a NAMM JUCE get together?

Cheers,

Rail

Gotcha, thanks!