From d7f058341e1925e7a8761474e37587bfbbdb28c1 Mon Sep 17 00:00:00 2001 From: Andrea Cavalli Date: Sun, 25 Oct 2020 14:26:23 +0100 Subject: [PATCH] Update tdlight and install_dependencies.sh --- implementations/tdlight | 2 +- travis/install_dependencies.sh | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/implementations/tdlight b/implementations/tdlight index dd3bf5b..e2953ba 160000 --- a/implementations/tdlight +++ b/implementations/tdlight @@ -1 +1 @@ -Subproject commit dd3bf5b2897467103752456bd8d6dc00782fc403 +Subproject commit e2953ba03595136707347bfc51a8c0a4d5d67b7c diff --git a/travis/install_dependencies.sh b/travis/install_dependencies.sh index d6e7520..e647cf8 100755 --- a/travis/install_dependencies.sh +++ b/travis/install_dependencies.sh @@ -23,6 +23,7 @@ elif [[ "$TRAVIS_OS_NAME" == "windows" ]]; then echo "==Windows==" choco install ccache choco install make + choco install windows-sdk-10.1 choco install visualstudio2019buildtools --version=16.7.0.0 --package-parameters "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64" choco install openjdk11 --version=11.0.8.10 choco install maven --version=3.6.3 @@ -37,6 +38,8 @@ elif [[ "$TRAVIS_OS_NAME" == "windows" ]]; then [ -d $VCPKG_DIR ] && $(yes | rm -rf $VCPKG_DIR) git clone --depth=1 https://github.com/tdlight-team/windows-amd64-prebuilt-libraries.git windowsenv mv windowsenv/vcpkg $VCPKG_DIR + cd $VCPKG_DIR + vcpkg integrate install else echo "Unrecognized os: $TRAVIS_OS_NAME" exit 1