You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|