19 lines
385 B
Bash
Executable File
19 lines
385 B
Bash
Executable File
#!/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 -j16 $PROJECT_NAME BUILDTYPE=$1
|
|
popd
|
|
else
|
|
xcodebuild -project ../cef.xcodeproj -configuration $1 -target "$PROJECT_NAME"
|
|
fi
|
|
fi
|