Cog/Libraries/build_libs.sh

9 lines
131 B
Bash
Raw Normal View History

2006-04-16 22:20:58 -04:00
for directory in *
do
if [ -d $directory ]; then
cd $directory
2006-04-17 13:25:58 -04:00
xcodebuild -alltargets -configuration Release
2006-04-16 22:20:58 -04:00
cd ..
fi
done