Gabriele Contini
2019-09-10 82f9d834ad772b2f16b6524f679d14d8a7afe881
1
2
3
4
5
6
7
8
9
@echo off
REM build and cache boost on Windows N.B. if no output for 10 minutes it's killed by travis. 
if not exist "C:/local/boost/libs" (
        echo "Boost not cached, compiling it"
        wget -q -O boost.exe https://dl.bintray.com/boostorg/release/1.71.0/binaries/boost_1_71_0-msvc-14.1-64.exe
        echo "Boost downloaded"
        boost.exe /SILENT /DIR=C:\local\boost 
        echo "Boost installed"
) else echo "Boost already installed"