10 lines
191 B
Bash
Executable file
10 lines
191 B
Bash
Executable file
#!/bin/sh
|
|
|
|
libs=( MAC MPCDec Ogg FLAC Shorten TagLib Vorbis WavPack MAD ID3Tag )
|
|
|
|
for lib in "${libs[@]}"
|
|
do
|
|
cd Frameworks/$lib
|
|
xcodebuild -alltargets -configuration Release
|
|
cd ../..
|
|
done
|