[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-dev] [patch] Changes to stand-alone application




On 17 Jan 2006, at 05:56, Tim Walters wrote:

On Jan 16, 2006, at 11:22 AM, James McCartney wrote:

The old xSC3xxxx.pbproj's should be removed I think.

Well, I went ahead and committed the changes, so I guess we'll find out if anyone is using them.



me. by accident. because of I use ./compile-xcode.sh for automated buiding.

if someone could commit this to compile-xcode.sh:


----------snip--------------
#!/bin/sh

# This script builds the server, the plugins and the application (sclang), one after another.
# It uses XCode, run it on Panther+ only.

# scsynth
echo "building scsynth"
xcodebuild -project xSC3synth.xcodeproj -target "All" -buildstyle "Deployment" build || exit

# sc plugins
echo "building plugins"
xcodebuild -project xSC3plugins.xcodeproj -target "All" -buildstyle "Deployment" build || exit

#sclang
echo "building sclang"
xcodebuild -project xSC3lang.xcodeproj -target "All" -buildstyle "Deployment" build || exit

echo "Done."

----------snap--------------


cheers
Till