mirror of https://github.com/BOINC/boinc.git
24 lines
557 B
Bash
Executable File
24 lines
557 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ ! -d "linux" ]; then
|
|
echo "start this script in the source root directory"
|
|
exit 1
|
|
fi
|
|
|
|
CACHE_DIR="$PWD/3rdParty/buildCache/linux"
|
|
BUILD_DIR="$PWD/3rdParty/linux"
|
|
VCPKG_ROOT="$BUILD_DIR/vcpkg"
|
|
|
|
export XDG_CACHE_HOME=$CACHE_DIR/vcpkgcache
|
|
|
|
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
|
|
$VCPKG_ROOT/vcpkg install rappture curl[core,openssl] --clean-after-build
|
|
$VCPKG_ROOT/vcpkg upgrade --no-dry-run
|