cef/tools/distrib/linux/build.sh
Marshall Greenblatt 165978af75 Create 1547 release branch for CEF3.
git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1547@1316 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
2013-07-19 00:17:15 +00:00

9 lines
141 B
Bash
Executable File

#!/bin/bash
if [ -z "$1" ]; then
echo "ERROR: Please specify a build target: Debug or Release"
else
make -j8 cefclient BUILDTYPE=$1
fi