Cog/Libraries/build_libs.sh
2006-04-17 17:25:58 +00:00

8 lines
131 B
Bash

for directory in *
do
if [ -d $directory ]; then
cd $directory
xcodebuild -alltargets -configuration Release
cd ..
fi
done