Add Collection:removeEvery
[supercollider.git] / clean-compile.sh
blob3887e06feca25c2f8add5c3a8d84e569136ec2a8
1 #!/bin/sh
3 # This script cleans all targets, then builds the projects for the server, the plugins and the application (sclang) projects, one after another.
5 # clean
6 echo "Cleaning scsynth..."
7 xcodebuild -project Synth.xcodeproj -target "All" clean || exit
9 echo "Cleaning plugins..."
10 xcodebuild -project Plugins.xcodeproj -target "All" clean || exit
12 echo "Cleaning sclang..."
13 xcodebuild -project Language.xcodeproj -target "All" clean || exit
15 echo "Clean Done."
17 # scsynth
18 echo "Building scsynth..."
19 xcodebuild -project Synth.xcodeproj -target "All" -configuration "Deployment" build || exit
21 # plugins
22 echo "Building plugins..."
23 xcodebuild -project Plugins.xcodeproj -target "All" -configuration "Deployment" build || exit
25 #sclang
26 echo "Building sclang..."
27 xcodebuild -project Language.xcodeproj -target "All" -configuration "Deployment" build || exit
29 echo "Done."