boinc/linux/bootstrap_vcpkg_cmake.sh

20 lines
396 B
Bash
Raw Normal View History

2022-04-08 15:24:57 +00:00
#!/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