qtcontactsmobility/common.pri
changeset 24 0ba2181d7c28
child 27 de1630741fbe
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/qtcontactsmobility/common.pri	Fri Mar 19 09:27:18 2010 +0200
@@ -0,0 +1,155 @@
+######################################################################
+#
+# Mobility API project - common QMake settings
+#
+######################################################################
+
+CONFIG(debug, debug|release) {
+    WAS_IN_DEBUG=debug
+} else {
+    WAS_IN_DEBUG=release
+}
+
+include(pathconfig.pri)
+include($$QT_MOBILITY_BUILD_TREE/config.pri)
+
+mac {
+    contains(QT_CONFIG, qt_framework):contains(TEMPLATE, lib) {
+        #MacOSX always builds debug and release libs when using mac framework
+        CONFIG+=$$WAS_IN_DEBUG
+        CONFIG += debug_and_release build_all
+    } else {
+        !contains(QT_CONFIG,debug)|!contains(QT_CONFIG,release) {
+            CONFIG -= debug_and_release debug release
+            contains(QT_CONFIG,debug): CONFIG+=debug
+            contains(QT_CONFIG,release): CONFIG+=release
+        }
+    }
+}
+
+#In Windows we want to build libraries in debug and release mode if the user
+#didn't select a version - if Qt is build in debug_and_release
+#this avoids problems for third party as qmake build debug by default
+#If mobility selected debug_and_release but Qt only supports
+#one version but not the other we slently disable the impossible combination
+win32:contains(CONFIG_WIN32,build_all) {
+    contains(QT_CONFIG,debug):contains(QT_CONFIG,release) {
+        contains(TEMPLATE,.*lib):!plugin {
+            CONFIG += $$WAS_IN_DEBUG
+            CONFIG += debug_and_release build_all
+        }
+    } else {
+        CONFIG -= debug_and_release debug release
+        contains(QT_CONFIG,debug): CONFIG+=debug
+        contains(QT_CONFIG,release): CONFIG+=release
+    }
+}
+
+# Helper function.  This should move to a .prf file
+defineReplace(mobilityDeployFilename) {
+   unset(MOBILITY_DEPLOY_NAME)
+   MOBILITY_DEPLOY_NAME = $$1
+   CONFIG(debug, debug|release): {
+      mac:RET = $$member(MOBILITY_DEPLOY_NAME, 0)_debug
+      else:win32:RET = $$member(MOBILITY_DEPLOY_NAME, 0)d
+   }
+   isEmpty(RET):RET = $$MOBILITY_DEPLOY_NAME
+   return($$RET)
+}
+
+# Make sure this goes everywhere we need it
+symbian: load(data_caging_paths)
+
+
+# Figure out the root of where stuff should go (this could be done via configure)
+OUTPUT_DIR = $$QT_MOBILITY_BUILD_TREE
+SOURCE_DIR = $$PWD
+
+CONFIG(debug, debug|release) {
+    SUBDIRPART=Debug
+} else {
+    SUBDIRPART=Release
+}
+
+contains(QT_CONFIG, reduce_exports):CONFIG+=hide_symbols
+
+#export more symbols if we build the unit tests
+contains(build_unit_tests, yes):DEFINES+=QTM_BUILD_UNITTESTS
+
+#test whether we have a unit test
+!testcase {
+    OBJECTS_DIR = $$OUTPUT_DIR/build/$$SUBDIRPART/$$TARGET
+    !plugin {
+        contains(TEMPLATE,.*lib):DESTDIR = $$OUTPUT_DIR/lib
+        else:DESTDIR = $$OUTPUT_DIR/bin
+    } else {
+        testplugin:DESTDIR = $$OUTPUT_DIR/build/tests/bin/plugins/$$PLUGIN_TYPE
+        !testplugin:DESTDIR = $$OUTPUT_DIR/plugins/$$PLUGIN_TYPE
+    }
+
+    MOC_DIR = $$OUTPUT_DIR/build/$$SUBDIRPART/$$TARGET/moc
+    RCC_DIR = $$OUTPUT_DIR/build/$$SUBDIRPART/$$TARGET/rcc
+    UI_DIR = $$OUTPUT_DIR/build/$$SUBDIRPART/$$TARGET/ui
+    QMAKE_RPATHDIR += $$QT_MOBILITY_LIB
+} else {
+    # Unit test code (no plugins! test plugins are just normal plugins installed elsewhere)
+    QT *= testlib
+    CONFIG += console
+    CONFIG -= app_bundle
+    OBJECTS_DIR = $$OUTPUT_DIR/build/tests/$$SUBDIRPART/$$TARGET
+    DESTDIR = $$OUTPUT_DIR/build/tests/bin
+    MOC_DIR = $$OUTPUT_DIR/build/tests/$$SUBDIRPART/$$TARGET/moc
+    RCC_DIR = $$OUTPUT_DIR/build/tests/$$SUBDIRPART/$$TARGET/rcc
+    UI_DIR = $$OUTPUT_DIR/build/tests/$$SUBDIRPART/$$TARGET/ui
+    QMAKE_RPATHDIR += $$OUTPUT_DIR/lib
+}
+
+maemo6 {
+    DEFINES+= Q_WS_MAEMO_6
+}
+maemo5 {
+    DEFINES+= Q_WS_MAEMO_5
+}
+
+wince* {
+    ### Bearer Management
+    BEARERLIB.sources = $$OUTPUT_DIR/lib/$$mobilityDeployFilename(QtBearer).dll
+    BEARERLIB.path = .
+    DEPLOYMENT += BEARERLIB
+
+    ### Contacts
+    # Main library
+    CONTACTS_DEPLOYMENT.sources = $$OUTPUT_DIR/lib/$$mobilityDeployFilename(QtContacts).dll
+    CONTACTS_DEPLOYMENT.path = /Windows
+
+    # Plugins
+    CONTACTS_PLUGINS_DEPLOYMENT.sources = $$OUTPUT_DIR/plugins/contacts/*.dll
+    CONTACTS_PLUGINS_DEPLOYMENT.path = plugins/contacts
+    DEPLOYMENT += CONTACTS_DEPLOYMENT CONTACTS_PLUGINS_DEPLOYMENT
+
+    ### Service Framework    
+    SFW_DEPLOYMENT.sources = $$OUTPUT_DIR/lib/$$mobilityDeployFilename(QtServiceFramework).dll
+    SFW_DEPLOYMENT.path = .
+    DEPLOYMENT += SFW_DEPLOYMENT
+    
+    ### Location
+    LOCATION.sources = $$OUTPUT_DIR/lib/$$mobilityDeployFilename(QtLocation).dll
+    LOCATION.path = .
+    DEPLOYMENT += LOCATION
+}
+
+symbian {
+    #For some reason the default include path doesn't include MOC_DIR on symbian
+    INCLUDEPATH += $$MOC_DIR
+}
+
+# Add the output dirs to the link path too
+mac:contains(QT_CONFIG,qt_framework) {
+    #add framework option
+    ##contains(TEMPLATE, app)|contains(CONFIG,plugin):LIBS+=-F$$OUTPUT_DIR/lib
+    LIBS+=-F$$OUTPUT_DIR/lib
+}
+LIBS += -L$$OUTPUT_DIR/lib
+
+DEPENDPATH += . $$SOURCE_DIR
+INCLUDEPATH += $$SOURCE_DIR/src/global