10 lines
231 B
Bash
Executable file
10 lines
231 B
Bash
Executable file
#!/bin/sh
|
|
|
|
plugins=( CoreAudio MonkeysAudio Musepack Flac Shorten TagLib Vorbis WavPack MAD FileSource HTTPSource)
|
|
|
|
for plugin in "${plugins[@]}"
|
|
do
|
|
cd Plugins/$plugin
|
|
xcodebuild -alltargets -configuration Release
|
|
cd ../..
|
|
done
|