replace copy with xcopy in the post event of vs wizard for win32.

This commit is contained in:
yangws 2011-03-11 11:12:41 +08:00
parent f0661a2679
commit f35af0366f
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ function AddConfigurations(proj, strProjectName) {
// Post-build settings
var PostBuildTool = config.Tools("VCPostBuildEventTool");
PostBuildTool.Description = "Performing copy resource from Resource to OutDir...";
PostBuildTool.CommandLine = "copy /Y \"$(ProjectDir)Resource\\*.*\" \"$(OutDir)\"";
PostBuildTool.CommandLine = "xcopy /E /Q /Y \"$(ProjectDir)Resource\\*.*\" \"$(OutDir)\"";
}
}
catch (e) {