diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2012-08-08 19:53:35 +0200 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-08-11 13:26:29 +0200 |
commit | 31e60edde2b7dc7a9508af65cba19d00103b7c8f (patch) | |
tree | ad0ed6de9b9e61cd0aa9b5ffef967e24821969e8 | |
parent | 0a830f6541697c3a30df742aedb7c0caeb2d01e1 (diff) | |
download | qtlocation-31e60edde2b7dc7a9508af65cba19d00103b7c8f.tar.gz |
fix module dependencies
the pri files contain QT+= statements, so they must be included before
loading qt_module.
Change-Id: If9097b80d5f765547f0f7c4675a0adce7980cab3
Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
-rw-r--r-- | src/location/location.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/location/location.pro b/src/location/location.pro index b42228cf..aa743a6f 100644 --- a/src/location/location.pro +++ b/src/location/location.pro @@ -3,13 +3,13 @@ load(qt_build_config) TARGET = QtLocation QT = core-private gui -load(qt_module) - HEADERS += qgeopositioninfosource_p.h include(maps/maps.pri) include(places/places.pri) +load(qt_module) + QMAKE_DOCS = $$PWD/../../doc/config/qtlocation.qdocconf PUBLIC_HEADERS += \ |