summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShane Kearns <ext-shane.2.kearns@nokia.com>2012-04-16 15:36:04 +0100
committerShane Kearns <shane.kearns@accenture.com>2012-04-20 12:27:35 +0200
commit2583c254c3961c833e0bf4a556682e77f3b6f8ec (patch)
tree8e2f04a496488136a57340b5816e5572b4517fcb
parentc85ac0c8d82a6c960329fad955b717f73a575440 (diff)
Add sync.profile and qt_http.pri files
Change-Id: I246ad5429661b09816ff9b14deb316b84820123c Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
-rw-r--r--modules/qt_http.pri14
-rw-r--r--sync.profile23
2 files changed, 37 insertions, 0 deletions
diff --git a/modules/qt_http.pri b/modules/qt_http.pri
new file mode 100644
index 0000000..77e8bf5
--- /dev/null
+++ b/modules/qt_http.pri
@@ -0,0 +1,14 @@
+QT.http.VERSION = 5.0.0
+QT.http.MAJOR_VERSION = 5
+QT.http.MINOR_VERSION = 0
+QT.http.PATCH_VERSION = 0
+
+QT.http.name = QtHttp
+QT.http.bins = $$QT_MODULE_BIN_BASE
+QT.http.includes = $$QT_MODULE_INCLUDE_BASE $$QT_MODULE_INCLUDE_BASE/QtHttp
+QT.http.private_includes = $$QT_MODULE_INCLUDE_BASE/QtHttp/$$QT.http.VERSION
+QT.http.sources = $$QT_MODULE_BASE/src/qhttp
+QT.http.libs = $$QT_MODULE_LIB_BASE
+QT.http.plugins = $$QT_MODULE_PLUGIN_BASE
+QT.http.imports = $$QT_MODULE_IMPORT_BASE
+QT.http.depends = core network
diff --git a/sync.profile b/sync.profile
new file mode 100644
index 0000000..8d4aa15
--- /dev/null
+++ b/sync.profile
@@ -0,0 +1,23 @@
+%modules = ( # path to module name map
+ "QtHttp" => "$basedir/src/qhttp",
+);
+%moduleheaders = ( # restrict the module headers to those found in relative path
+);
+%classnames = (
+);
+%mastercontent = (
+ "core" => "#include <QtCore/QtCore>\n",
+ "network" => "#include <QtNetwork/QtNetwork>\n",
+);
+%modulepris = (
+ "QtHttp" => "$basedir/modules/qt_http.pri",
+);
+# Module dependencies.
+# Every module that is required to build this module should have one entry.
+# Each of the module version specifiers can take one of the following values:
+# - A specific Git revision.
+# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
+#
+%dependencies = (
+ "qtbase" => "refs/heads/master",
+);