Inital commit.

This commit is contained in:
Shady Ibraheem
2019-11-15 15:38:01 -05:00
parent a8289fbefa
commit f396818e23
208 changed files with 10770 additions and 95 deletions
@@ -0,0 +1,21 @@
################################################################################
## File: Install-Vcpkg.ps1
## Desc: Install vcpkg
################################################################################
Import-Module -Name ImageHelpers -Force
$Uri = 'https://github.com/Microsoft/vcpkg.git'
$InstallDir = 'C:\vcpkg'
$VcpkgExecPath = 'vcpkg.exe'
git clone --depth=1 $Uri $InstallDir -q
# Build and integrate vcpkg
Invoke-Expression "$InstallDir\bootstrap-vcpkg.bat"
Invoke-Expression "$InstallDir\$VcpkgExecPath integrate install"
# Add vcpkg to system environment
Add-MachinePathItem $InstallDir
$env:Path = Get-MachinePath
setx VCPKG_INSTALLATION_ROOT $InstallDir /M