mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-25 16:37:51 +01:00
8 lines
140 B
Bash
8 lines
140 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
|
||
|
|