diff --git a/mbedtls_msvc.ps1 b/mbedtls_msvc.ps1 new file mode 100644 index 0000000..ce281ca --- /dev/null +++ b/mbedtls_msvc.ps1 @@ -0,0 +1,7 @@ +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