mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Branch CEF3 files from /branches/cef3 to /trunk/cef3 (issue #564).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@571 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
18
tools/build_projects.sh
Executable file
18
tools/build_projects.sh
Executable file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
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
|
||||
if [ `uname` = "Linux" ]; then
|
||||
pushd ../../
|
||||
make BUILDTYPE=$1 -j 16
|
||||
popd
|
||||
else
|
||||
xcodebuild -project ../cef.xcodeproj -configuration $1 -target "$PROJECT_NAME"
|
||||
fi
|
||||
fi
|
Reference in New Issue
Block a user