mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-22 15:29:56 +01:00
58b3d51bce
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@312 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
14 lines
268 B
Bash
Executable File
14 lines
268 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "ERROR: Please specify a build target: Debug or Release"
|
|
else
|
|
if [ -z "$2" ]; then
|
|
PROJECT_NAME='cefclient'
|
|
else
|
|
PROJECT_NAME=$2
|
|
fi
|
|
|
|
xcodebuild -project ../cef.xcodeproj -configuration $1 -target $PROJECT_NAME
|
|
fi
|