mirror of https://github.com/axmolengine/axmol.git
replace copy with xcopy in the post event of vs wizard for win32.
This commit is contained in:
parent
f0661a2679
commit
f35af0366f
|
@ -276,7 +276,7 @@ function AddConfigurations(proj, strProjectName) {
|
||||||
// Post-build settings
|
// Post-build settings
|
||||||
var PostBuildTool = config.Tools("VCPostBuildEventTool");
|
var PostBuildTool = config.Tools("VCPostBuildEventTool");
|
||||||
PostBuildTool.Description = "Performing copy resource from Resource to OutDir...";
|
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) {
|
catch (e) {
|
||||||
|
|
Loading…
Reference in New Issue