git-svn-id: svn://db.shs.com.ru/libs@828 a8b55f48-bf90-11e4-a774-851b48703e85

This commit is contained in:
2020-03-18 17:57:53 +00:00
parent a92098c2a6
commit a033ffe0e1
2 changed files with 32 additions and 10 deletions

View File

@@ -354,8 +354,14 @@ int main(int argc, char * argv[]) {
if (need_qt)
procQt();
#ifdef WINDOWS
out_dir.replaceAll("/", "\\");
#endif
PIVector<PIString> clibs = all_libs.toVector();
piForeachC (PIString & l, clibs) {
piForeach (PIString l, clibs) {
#ifdef WINDOWS
l.replaceAll("/", "\\");
#endif
piCout << "copy" << l;
if (!fake)
system(cmd_copy + "\"" + l + "\" \"" + out_dir + "\"" + cmd_suffix);