diff --git a/Libraries/build_libs.sh b/Libraries/build_libs.sh new file mode 100644 index 000000000..e341c5fdc --- /dev/null +++ b/Libraries/build_libs.sh @@ -0,0 +1,8 @@ +for directory in * +do + if [ -d $directory ]; then + cd $directory + xcodebuild -configuration Release + cd .. + fi +done