8 lines
507 B
PowerShell
8 lines
507 B
PowerShell
|
New-Item "temp" -ItemType "directory" -Force
|
||
|
$client = New-Object System.Net.WebClient
|
||
|
$client.DownloadFile("https://github.com/ARMmbed/mbedtls/archive/development.zip", "temp\mbedtls-development.zip")
|
||
|
Expand-Archive -Path temp\mbedtls-development.zip -DestinationPath temp\
|
||
|
Move-Item temp\mbedtls-development\ C:\mbedtls\
|
||
|
MSBuild.exe C:\mbedtls\visualc\VS2010\mbedTLS.sln /p:Configuration=Release /p:Platform=x64
|
||
|
MSBuild.exe C:\mbedtls\visualc\VS2010\mbedTLS.sln /p:Configuration=Release /p:Platform=Win32
|