summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorAlex <qt-info@nokia.com>2010-06-04 08:20:38 +1000
committerAlex <qt-info@nokia.com>2010-06-04 08:20:38 +1000
commit4b5c30b3a2b031d03bfda88559d50052894441e0 (patch)
tree6c8e071ab283a827b08a7c1fdf89446087cb2f98 /configure
parent3c49fd0bf44622e124be17382140f86ca6b38055 (diff)
comply with standard include path practise in Qt
This change adds support for the following include styles: \#include <QtLibraryName/Class> \#include <QtLibraryName/class.h> so far the only supported style was: \#include <Class> \#include <class.h> Task-number: MOBILITY-1087
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure32
1 files changed, 16 insertions, 16 deletions
diff --git a/configure b/configure
index adb378a65b..47f82ac2eb 100755
--- a/configure
+++ b/configure
@@ -485,25 +485,25 @@ mkdir $shadowpath/include
for module in $MOBILITY_MODULES; do
case "$module" in
bearer)
- $relpath/bin/syncheaders $shadowpath/include/QtmBearer $relpath/src/bearer
+ $relpath/bin/syncheaders $shadowpath/include/QtBearer $relpath/src/bearer
;;
publishsubscribe)
- $relpath/bin/syncheaders $shadowpath/include/QtmPubSub $relpath/src/publishsubscribe
+ $relpath/bin/syncheaders $shadowpath/include/QtPublishSubscribe $relpath/src/publishsubscribe
;;
location)
- $relpath/bin/syncheaders $shadowpath/include/QtmLocation $relpath/src/location
+ $relpath/bin/syncheaders $shadowpath/include/QtLocation $relpath/src/location
;;
serviceframework)
- $relpath/bin/syncheaders $shadowpath/include/QtmServiceFramework $relpath/src/serviceframework
+ $relpath/bin/syncheaders $shadowpath/include/QtServiceFramework $relpath/src/serviceframework
;;
systeminfo)
- $relpath/bin/syncheaders $shadowpath/include/QtmSystemInfo $relpath/src/systeminfo
+ $relpath/bin/syncheaders $shadowpath/include/QtSystemInfo $relpath/src/systeminfo
;;
contacts)
- $relpath/bin/syncheaders $shadowpath/include/QtmContacts $relpath/src/contacts
- $relpath/bin/syncheaders $shadowpath/include/QtmContacts $relpath/src/contacts/details
- $relpath/bin/syncheaders $shadowpath/include/QtmContacts $relpath/src/contacts/requests
- $relpath/bin/syncheaders $shadowpath/include/QtmContacts $relpath/src/contacts/filters
+ $relpath/bin/syncheaders $shadowpath/include/QtContacts $relpath/src/contacts
+ $relpath/bin/syncheaders $shadowpath/include/QtContacts $relpath/src/contacts/details
+ $relpath/bin/syncheaders $shadowpath/include/QtContacts $relpath/src/contacts/requests
+ $relpath/bin/syncheaders $shadowpath/include/QtContacts $relpath/src/contacts/filters
;;
multimedia)
$relpath/bin/syncheaders $shadowpath/include/QtMultimediaKit $relpath/src/multimedia
@@ -511,18 +511,18 @@ for module in $MOBILITY_MODULES; do
$relpath/bin/syncheaders $shadowpath/include/QtMultimediaKit $relpath/src/multimedia/video
;;
messaging)
- $relpath/bin/syncheaders $shadowpath/include/QtmMessaging $relpath/src/messaging
+ $relpath/bin/syncheaders $shadowpath/include/QtMessaging $relpath/src/messaging
;;
versit)
#versit implies contacts
- $relpath/bin/syncheaders $shadowpath/include/QtmVersit $relpath/src/versit
- $relpath/bin/syncheaders $shadowpath/include/QtmContacts $relpath/src/contacts
- $relpath/bin/syncheaders $shadowpath/include/QtmContacts $relpath/src/contacts/details
- $relpath/bin/syncheaders $shadowpath/include/QtmContacts $relpath/src/contacts/requests
- $relpath/bin/syncheaders $shadowpath/include/QtmContacts $relpath/src/contacts/filters
+ $relpath/bin/syncheaders $shadowpath/include/QtVersit $relpath/src/versit
+ $relpath/bin/syncheaders $shadowpath/include/QtContacts $relpath/src/contacts
+ $relpath/bin/syncheaders $shadowpath/include/QtContacts $relpath/src/contacts/details
+ $relpath/bin/syncheaders $shadowpath/include/QtContacts $relpath/src/contacts/requests
+ $relpath/bin/syncheaders $shadowpath/include/QtContacts $relpath/src/contacts/filters
;;
sensors)
- $relpath/bin/syncheaders $shadowpath/include/QtmSensors $relpath/src/sensors
+ $relpath/bin/syncheaders $shadowpath/include/QtSensors $relpath/src/sensors
;;
*)
echo "Cannot generate headers for $module"