2021-04-03 17:43:55 +00:00
|
|
|
#!/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"
|
2021-06-28 15:10:50 +00:00
|
|
|
VCPKG_PORTS="$PWD/3rdParty/vcpkg_ports"
|
2021-04-09 22:52:34 +00:00
|
|
|
VCPKG_ROOT="$BUILD_DIR/vcpkg"
|
2021-04-03 17:43:55 +00:00
|
|
|
|
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
|
2021-04-03 17:43:55 +00:00
|
|
|
fi
|
|
|
|
|
2021-04-09 22:52:34 +00:00
|
|
|
git -C $VCPKG_ROOT pull
|
|
|
|
$VCPKG_ROOT/bootstrap-vcpkg.sh
|
2022-04-12 19:28:16 +00:00
|
|
|
$VCPKG_ROOT/vcpkg install --x-manifest-root=linux/vcpkg_config_client/ --x-install-root=$VCPKG_ROOT/installed/ --overlay-ports=$VCPKG_PORTS/ports --overlay-triplets=$VCPKG_PORTS/triplets/ci --triplet=x64-linux --feature-flags=versions --clean-after-build
|