boinc/linux/update_vcpkg_apps.sh

22 lines
659 B
Bash
Raw Permalink Normal View History

#!/bin/sh
set -e
if [ ! -d "linux" ]; then
echo "start this script in the source root directory"
exit 1
fi
. $PWD/3rdParty/vcpkg_ports/vcpkg_link.sh
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 $VCPKG_LINK
fi
2021-04-09 22:52:34 +00:00
git -C $VCPKG_ROOT pull
$VCPKG_ROOT/bootstrap-vcpkg.sh
2022-06-05 12:18:08 +00:00
$VCPKG_ROOT/vcpkg install --x-manifest-root=3rdParty/vcpkg_ports/configs/apps/linux/ --x-install-root=$VCPKG_ROOT/installed/ --overlay-ports=$VCPKG_PORTS/ports --overlay-triplets=$VCPKG_PORTS/triplets/ci --triplet=x64-linux --clean-after-build