Sha256: 07cad94d44b7843e217846041fe4afaec740859597771c82df5f2411e2e5cbf7
Contents?: true
Size: 382 Bytes
Versions: 10
Compression:
Stored size: 382 Bytes
Contents
Invoke-WebRequest https://github.com/glfw/glfw/releases/download/3.2.1/glfw-3.2.1.bin.WIN32.zip -OutFile "$pwd\glfw-3.2.1.bin.WIN32.zip" Add-Type -AssemblyName System.IO.Compression.FileSystem function Unzip { param([string]$zipfile, [string]$outpath) [System.IO.Compression.ZipFile]::ExtractToDirectory($zipfile, $outpath) } Unzip "$pwd\glfw-3.2.1.bin.WIN32.zip" "$pwd"
Version data entries
10 entries across 10 versions & 1 rubygems