Changeset 944


Ignore:
Timestamp:
Feb 7, 2014, 4:03:29 PM (11 years ago)
Author:
s10k
Message:

XmlTools
last changes to V2.0

Location:
XmlTools2/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • XmlTools2/trunk/XmlTools.pro

    r926 r944  
    66#QT += qml #for use new google v8 qtscript engine
    77QT += script #for use old qtscript engine
     8#QMAKE_CXXFLAGS+= -fopenmp
     9#QMAKE_LFLAGS +=  -fopenmp #OpenMP (multithreading) support
    810
    911macx {
  • XmlTools2/trunk/main.cpp

    r926 r944  
    1414
    1515    //app.exec();
     16
    1617    return 0;
    1718}
  • XmlTools2/trunk/main.h

    r928 r944  
    77// filesystem.
    88// http://mingw-users.1079350.n2.nabble.com/Problems-with-expanding-wildcards-to-a-program-td1358555.html
    9 unsigned long _CRT_glob = 0; // Magic variable to disable wildcards expansion in mingw
     9int _dowildcard = 0; // Magic variable to disable wildcards expansion in mingw
    1010// in our case fixes param parser crashes on windows
     11#endif
     12
    1113#endif
    1214
  • XmlTools2/trunk/optionsparser.cpp

    r942 r944  
    106106
    107107            // Now let's process each patch file and target file
     108            //#pragma omp parallel for
    108109            for(int i=0; i<patchFiles.size(); i++){
    109110                XmlPatch myXmlPatch(patchFiles[i],targetXmlFiles[i],true,true); // use --no-backups and --no-verbose for AEI
  • XmlTools2/trunk/optionsparser.h

    r927 r944  
    11#ifndef OPTIONSPARSER_H
    22#define OPTIONSPARSER_H
     3
     4//#include <omp.h> // OpenMP support
    35
    46#include "xmlpatch.h"
Note: See TracChangeset for help on using the changeset viewer.