mirror of https://github.com/BOINC/boinc.git
20 lines
396 B
Bash
20 lines
396 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
if [ ! -d "linux" ]; then
|
||
|
echo "start this script in the source root directory"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
BUILD_DIR="$PWD/3rdParty/linux"
|
||
|
VCPKG_PORTS="$PWD/3rdParty/vcpkg_ports"
|
||
|
VCPKG_ROOT="$BUILD_DIR/vcpkg"
|
||
|
|
||
|
if [ ! -d $VCPKG_ROOT ]; then
|
||
|
mkdir -p $BUILD_DIR
|
||
|
git -C $BUILD_DIR clone https://github.com/microsoft/vcpkg
|
||
|
fi
|
||
|
|
||
|
git -C $VCPKG_ROOT pull
|
||
|
$VCPKG_ROOT/bootstrap-vcpkg.sh
|