mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-22 07:27:55 +01:00
9 lines
141 B
Bash
9 lines
141 B
Bash
|
#!/bin/bash
|
||
|
if [ -z "$1" ]; then
|
||
|
echo "ERROR: Please specify a build target: Debug or Release"
|
||
|
else
|
||
|
make -j8 cefclient BUILDTYPE=$1
|
||
|
fi
|
||
|
|
||
|
|