| e5fcad3 by Lars Knoll at 2009-03-23 | 1 | # Qt kernel library base module |
| 2 | ||
| 3 | HEADERS += \ |
|
| 4 | global/qglobal.h \ |
|
| 5 | global/qnamespace.h \ |
|
| 6 | global/qendian.h \ |
|
| 7 | global/qnumeric_p.h \ |
|
| 8 | global/qnumeric.h |
|
| 9 | ||
| 10 | SOURCES += \ |
|
| 11 | global/qglobal.cpp \ |
|
| 12 | global/qlibraryinfo.cpp \ |
|
| 13 | global/qmalloc.cpp \ |
|
| 14 | global/qnumeric.cpp |
|
| 15 | ||
| 16 | # qlibraryinfo.cpp includes qconfig.cpp |
|
| 17 | INCLUDEPATH += $$QT_BUILD_TREE/src/corelib/global |
|
| 18 | ||
| 19 | # Only used on platforms with CONFIG += precompile_header |
|
| 20 | PRECOMPILED_HEADER = global/qt_pch.h |
|
| 0ba6f32 by Thiago Macieira at 2009-06-28 | 21 | |
| 5a1676a by Harald Fernengel at 2011-02-11 | 22 | linux*:!static:!symbian-gcce:!*-armcc* { |
| 0ba6f32 by Thiago Macieira at 2009-06-28 | 23 | QMAKE_LFLAGS += -Wl,-e,qt_core_boilerplate |
| 24 | prog=$$quote(if (/program interpreter: (.*)]/) { print $1; }) |
|
| 25 | DEFINES += ELF_INTERPRETER=\\\"$$system(readelf -l /bin/ls | perl -n -e \'$$prog\')\\\" |
|
| 26 | } |
|
| 0aad0d2 by Miikka Heikkinen at 2010-09-23 | 27 | |
| 28 | # Compensate for lack of platform defines in Symbian3 and Symbian4 |
|
| e087227 by Miikka Heikkinen at 2011-03-24 | 29 | symbian { |
| 30 | DEFINES += SYMBIAN_VERSION_$$upper($$replace(SYMBIAN_VERSION,\\.,_)) \ |
|
| 31 | S60_VERSION_$$upper($$replace(S60_VERSION,\\.,_)) |
|
| 32 | } |
|
| bc09d5b by Miikka Heikkinen at 2010-11-18 | 33 | |
| 34 | include(../../../tools/shared/symbian/epocroot.pri) |

