boinc/linux/update_vcpkg_apps.sh

21 lines
629 B
Bash
Raw Normal View History

#!/bin/sh
set -e
if [ ! -d "linux" ]; then
echo "start this script in the source root directory"
exit 1
fi
2021-04-09 22:52:34 +00:00
BUILD_DIR="$PWD/3rdParty/linux"
VCPKG_PORTS="$PWD/3rdParty/vcpkg_ports"
2021-04-09 22:52:34 +00:00
VCPKG_ROOT="$BUILD_DIR/vcpkg"
2021-04-09 22:52:34 +00:00
if [ ! -d $VCPKG_ROOT ]; then
mkdir -p $BUILD_DIR
git -C $BUILD_DIR clone https://github.com/microsoft/vcpkg
fi
2021-04-09 22:52:34 +00:00
git -C $VCPKG_ROOT pull
$VCPKG_ROOT/bootstrap-vcpkg.sh
2022-04-12 17:46:50 +00:00
$VCPKG_ROOT/vcpkg install --x-manifest-root=linux/vcpkg_config_apps/ --x-install-root=$VCPKG_ROOT/installed/ --overlay-ports=$VCPKG_PORTS/ports --overlay-triplets=$VCPKG_PORTS/triplets/ci --feature-flags=versions --clean-after-build