1 extract AAX_SDK_2p1p0.zip here
3 make the following mods to compile on 10.68 / Xcode 3.26
5 - set SDKROOT to macosx10.5 for debug and release targets of AAXLibrary static lib
7 - modify ExamplePlugIns/Common/Mac/CommonDebugSettings.xcconfig and ExamplePlugIns/Common/Mac/CommonReleaseSettings.xcconfig...
9 GCC_VERSION = com.apple.compilers.gcc.4_2
11 MACOSX_DEPLOYMENT_TARGET = 10.5
14 make the following mods to compile on 10.8+ / Xcode 5
16 - this assumes that you have installed the MacOSX10.6.sdk in /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/
18 - set SDKROOT to macosx10.6 for debug and release targets of AAXLibrary static lib
20 - modify ExamplePlugIns/Common/Mac/CommonDebugSettings.xcconfig and ExamplePlugIns/Common/Mac/CommonReleaseSettings.xcconfig...
22 GCC_VERSION = com.apple.compilers.llvm.clang
24 MACOSX_DEPLOYMENT_TARGET = 10.5
27 On Windows you will need to set the Libs/AAXLibrary/WinBuild/AAXLibrary.vcxproj project to link statically to the MSVC2010 runtime library - change to /MT rather than /MD