From 28d0b8ee7d131479a07c23af969d79e1b9d31eca Mon Sep 17 00:00:00 2001 From: odrling Date: Sat, 25 Jan 2020 01:36:43 +0100 Subject: [PATCH] install boost --- appveyor.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 8b2443f02..fcabfc7a6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -23,7 +23,10 @@ install: - cmd: 7z x icu.zip # Set up the build environment - cmd: '"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64' - - cmd: set BOOST_ROOT=C:\Libraries\boost_1_71_0 + # Install boost + - cmd: curl -o boost-msvc-64.exe "https://bintray.com/boostorg/release/download_file?file_path=1.72.0%2Fbinaries%2Fboost_1_72_0-msvc-14.2-64.exe" + - cmd: cmd /c start /wait boost-msvc-64.exe /verysilent + - cmd: set BOOST_ROOT=C:\local\boost_1_72_0 # build wxWidgets - cmd: chdir %WXWIN%\build\msw - cmd: nmake -f makefile.vc BUILD=release COMPILER_PREFIX=vc142_x64 SHARED=1