private/Add-Boost.ps1

Function Add-Boost {
    <#
    .SYNOPSIS
        Add boost library.
    #>

    [OutputType()]
    param(
    )
    begin {
    }
    process {
        $url = "https://archives.boost.io/release/1.72.0/source/boost_1_72_0.zip"
        Get-File -Url -OutFile "boost.zip"
        Expand-Archive -Path "boost.zip" -DestinationPath "../deps"
    }
    end {
    }
}