2010-09-19 09:44:28 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Note:
|
|
|
|
# This script is meant to be run from the root of the working copy.
|
|
|
|
#
|
|
|
|
# This script cleans up warzone but not the libs so builds will go faster.
|
|
|
|
|
|
|
|
# Config
|
|
|
|
|
|
|
|
cd macosx
|
|
|
|
|
2010-09-19 12:55:56 -07:00
|
|
|
xcodebuild -project Warzone.xcodeproj -parallelizeTargets -target "Warzone" -configuration "Release" -nodependencies clean
|
2010-09-19 09:44:28 -07:00
|
|
|
exit ${?}
|