| 8 |
|
QMAKE_CXXFLAGS+= -fopenmp |
| 9 |
|
QMAKE_LFLAGS += -fopenmp #OpenMP (multithreading) support |
| 10 |
|
|
| 11 |
+ |
# More optimization |
| 12 |
+ |
QMAKE_CFLAGS_RELEASE += -O3 |
| 13 |
+ |
QMAKE_CXXFLAGS_RELEASE += -O3 |
| 14 |
+ |
|
| 15 |
+ |
|
| 16 |
+ |
|
| 17 |
|
|
| 18 |
|
macx { |
| 19 |
|
CONFIG -= app_bundle # We only want the binary on mac os not a bundle |
| 30 |
|
multidimvar.cpp \ |
| 31 |
|
utilxmltools.cpp \ |
| 32 |
|
xmlfilter.cpp \ |
| 33 |
< |
optionsparser.cpp |
| 33 |
> |
optionsparser.cpp \ |
| 34 |
> |
xmlcustomcode.cpp |
| 35 |
|
|
| 36 |
|
HEADERS += main.h \ |
| 37 |
|
libs/pugiconfig.hpp \ |
| 42 |
|
multidimvar.h \ |
| 43 |
|
utilxmltools.h \ |
| 44 |
|
xmlfilter.h \ |
| 45 |
< |
optionsparser.h |
| 45 |
> |
optionsparser.h \ |
| 46 |
> |
xmlcustomcode.h |
| 47 |
|
|
| 48 |
|
OTHER_FILES += |
| 49 |
|
|