3 #bash shell script to build all the plugin projects in this directory for OSX.
4 #you may need to modify this if you don't have the RTAS SDK, or only want to build vst2 etc
5 #since the build will cancel if there are any errors
9 #here you can choose a target to build
20 echo "building all example plugins..."
22 if [ -f build_errors.log
]
29 if [ -d "$file/$file.xcodeproj" ]
31 echo "building $file/$file.xcodeproj $TARGET target"
32 xcodebuild
-project "$file/$file.xcodeproj" -target $TARGET -configuration Release
2> .
/build_errors.log
34 if [ -s build_errors.log
]
36 echo "build failed due to following errors in $file"
41 if [ -f build_errors.log
]