diff options
author | Aleksandar Sasha Babic <aleksandar.babic@nokia.com> | 2010-05-13 07:42:38 (GMT) |
---|---|---|
committer | Aleksandar Sasha Babic <aleksandar.babic@nokia.com> | 2010-05-13 07:42:38 (GMT) |
commit | 286bc423df6ed670d46d9a7075114f787b8db4bc (patch) | |
tree | c42638da4eea780f9f90ec01a1b5ea5391db74fc /tests | |
parent | d1ddc7f25f1896a02707ecd295915a098ede11d8 (diff) | |
download | Qt-286bc423df6ed670d46d9a7075114f787b8db4bc.zip Qt-286bc423df6ed670d46d9a7075114f787b8db4bc.tar.gz Qt-286bc423df6ed670d46d9a7075114f787b8db4bc.tar.bz2 |
Fixing compiling issues.
On tb92 compiler gets confused when there is private header in the main
cpp file. This happens in a lot of places in autoteste and benchmarks.
We have to give explicite path to the MW headers.
Reviewed-by: TrustMe
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qhostinfo/qhostinfo.pro | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/auto/qhostinfo/qhostinfo.pro b/tests/auto/qhostinfo/qhostinfo.pro index 9bfe576..f5c3923 100644 --- a/tests/auto/qhostinfo/qhostinfo.pro +++ b/tests/auto/qhostinfo/qhostinfo.pro @@ -2,7 +2,7 @@ load(qttest_p4) SOURCES += tst_qhostinfo.cpp -QT = core network core +QT = core network wince*: { LIBS += ws2.lib @@ -10,4 +10,8 @@ wince*: { win32:LIBS += -lws2_32 } +symbian: { + INCLUDEPATH *= $$MW_LAYER_SYSTEMINCLUDE +} + |