Changeset 944
- Timestamp:
- Feb 7, 2014, 4:03:29 PM (11 years ago)
- Location:
- XmlTools2/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
XmlTools2/trunk/XmlTools.pro
r926 r944 6 6 #QT += qml #for use new google v8 qtscript engine 7 7 QT += script #for use old qtscript engine 8 #QMAKE_CXXFLAGS+= -fopenmp 9 #QMAKE_LFLAGS += -fopenmp #OpenMP (multithreading) support 8 10 9 11 macx { -
XmlTools2/trunk/main.cpp
r926 r944 14 14 15 15 //app.exec(); 16 16 17 return 0; 17 18 } -
XmlTools2/trunk/main.h
r928 r944 7 7 // filesystem. 8 8 // 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 mingw9 int _dowildcard = 0; // Magic variable to disable wildcards expansion in mingw 10 10 // in our case fixes param parser crashes on windows 11 #endif 12 11 13 #endif 12 14 -
XmlTools2/trunk/optionsparser.cpp
r942 r944 106 106 107 107 // Now let's process each patch file and target file 108 //#pragma omp parallel for 108 109 for(int i=0; i<patchFiles.size(); i++){ 109 110 XmlPatch myXmlPatch(patchFiles[i],targetXmlFiles[i],true,true); // use --no-backups and --no-verbose for AEI -
XmlTools2/trunk/optionsparser.h
r927 r944 1 1 #ifndef OPTIONSPARSER_H 2 2 #define OPTIONSPARSER_H 3 4 //#include <omp.h> // OpenMP support 3 5 4 6 #include "xmlpatch.h"
Note:
See TracChangeset
for help on using the changeset viewer.