在Windows上,使用nmake,如何包含从中下载文件的规则 一个位置?类似于wget,但在Windows上。
答案 0 :(得分:0)
在现代Windows(Vista,Windows 7,更高版本)上,您可以使用Powershell,因此您可以这样做:
# ==================================================================
_PS=${WINDIR}\System32\WindowsPowerShell\v1.0\powershell.exe
OAUTHCS_URL=https://cropperplugins.svn.codeplex.com/svn/Cropper.Plugins/OAuth1.0/OAuth.cs
OAuth.cs:
$(_PS) -Command "& {(new-object System.Net.WebClient).DownloadFile('$(OAUTHCS_URL)','OAuth.cs')}"
如果您不想依赖powershell,可以使用wget命令行工具进行Windows,如下所示:
CSC=\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe
Oauth.cs: wget.exe
.\wget.exe $(OAUTHCS_URL)
wget.exe: wget.cs $(CSC)
$(CSC) /t:exe /debug+ /out:wget.exe wget.cs
可以使用wget工具的来源here。