cef/tools/distrib/linux/build.sh
2013-04-08 01:32:10 +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