mirror of https://github.com/BOINC/boinc.git
14 lines
316 B
Bash
Executable File
14 lines
316 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ ! -d "android" ]; then
|
|
echo "start this script in the source root directory"
|
|
exit 1
|
|
fi
|
|
|
|
export VERBOSE="no"
|
|
|
|
echo '===== BOINC apps for all platforms build start ====='
|
|
android/build_component.sh --component apps --with-vcpkg
|
|
echo '===== BOINC apps for all platforms build done ====='
|