summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex <qt-info@nokia.com>2011-05-06 12:46:07 +1000
committerAlex <qt-info@nokia.com>2011-05-06 12:52:30 +1000
commitb9758f161020136437fd728698d69a0f3ed970a1 (patch)
treeb165eb3b25c73f1cc3f091744a0b8839c0bb00c1
parent5cd7fecf53ee6f4381417db3dd199fd3355685d2 (diff)
downloadqtlocation-b9758f161020136437fd728698d69a0f3ed970a1.tar.gz
add most qtlocation module setup files
-rw-r--r--modules/qt_location.pri17
-rw-r--r--qtlocation.pri1
-rw-r--r--qtlocation.pro28
-rw-r--r--src/src.pro2
-rw-r--r--sync.profile29
5 files changed, 76 insertions, 1 deletions
diff --git a/modules/qt_location.pri b/modules/qt_location.pri
new file mode 100644
index 00000000..7b51943a
--- /dev/null
+++ b/modules/qt_location.pri
@@ -0,0 +1,17 @@
+QT_LOCATION_VERSION = $$QT_VERSION
+QT_LOCATION_MAJOR_VERSION = $$QT_MAJOR_VERSION
+QT_LOCATION_MINOR_VERSION = $$QT_MINOR_VERSION
+QT_LOCATION_PATCH_VERSION = $$QT_PATCH_VERSION
+
+QT.location.name = QtLocation
+QT.location.bins = $$QT_MODULE_BIN_BASE
+QT.location.includes = $$QT_MODULE_INCLUDE_BASE $$QT_MODULE_INCLUDE_BASE/QtLocation
+QT.location.private_includes = $$QT_MODULE_INCLUDE_BASE/QtLocation/private
+QT.location.sources = $$QT_MODULE_BASE/src/location
+QT.location.libs = $$QT_MODULE_LIB_BASE
+QT.location.plugins = $$QT_MODULE_PLUGIN_BASE
+QT.location.imports = $$QT_MODULE_IMPORT_BASE
+QT.location.depends = gui sql network
+QT.location.DEFINES = QT_LOCATION_LIB
+
+QT_CONFIG += location
diff --git a/qtlocation.pri b/qtlocation.pri
deleted file mode 100644
index 12ffd655..00000000
--- a/qtlocation.pri
+++ /dev/null
@@ -1 +0,0 @@
-#qmake placeholder
diff --git a/qtlocation.pro b/qtlocation.pro
new file mode 100644
index 00000000..cbdefdf6
--- /dev/null
+++ b/qtlocation.pro
@@ -0,0 +1,28 @@
+TEMPLATE = subdirs
+
+module_qtlocation_src.subdir = src
+module_qtlocation_src.target = module-qtlocation-src
+
+module_qtlocation_tools.subdir = tools
+module_qtlocation_tools.target = module-qtlocation-tools
+module_qtlocation_tools.depends = module_qtlocation_src
+
+module_qtlocation_demos.subdir = demos
+module_qtlocation_demos.target = module-qtlocation-demos
+module_qtlocation_demos.depends = module_qtlocation_src
+
+module_qtlocation_examples.subdir = examples/declarative
+module_qtlocation_examples.target = module-qtlocation-examples
+module_qtlocation_examples.depends = module_qtlocation_src
+
+module_qtlocation_tests.subdir = tests
+module_qtlocation_tests.target = module-qtlocation-tests
+module_qtlocation_tests.depends = module_qtlocation_src
+module_qtlocation_tests.CONFIG = no_default_target no_default_install
+
+
+SUBDIRS += module_qtlocation_src \
+# module_qtlocation_tools \
+# module_qtlocation_demos \
+# module_qtlocation_examples \
+# module_qtlocation_tests \
diff --git a/src/src.pro b/src/src.pro
new file mode 100644
index 00000000..a94410c9
--- /dev/null
+++ b/src/src.pro
@@ -0,0 +1,2 @@
+TEMPLATE = subdirs
+SUBDIRS += location
diff --git a/sync.profile b/sync.profile
new file mode 100644
index 00000000..79111dcd
--- /dev/null
+++ b/sync.profile
@@ -0,0 +1,29 @@
+%modules = ( # path to module name map
+ "QtLocation" => "$basedir/src/location",
+);
+%moduleheaders = ( # restrict the module headers to those found in relative path
+);
+%classnames = (
+);
+%mastercontent = (
+ "gui" => "#include <QtGui/QtGui>\n",
+ "network" => "#include <QtNetwork/QtNetwork>\n",
+ "sql" => "#include <QtSql/QtSql>\n",
+);
+%modulepris = (
+ "QtLocation" => "$basedir/modules/qt_location.pri",
+);
+# Modules and programs, and their dependencies.
+# Each of the module version specifiers can take one of the following values:
+# - A specific Git revision.
+# - "LATEST_REVISION", to always test against the latest revision.
+# - "LATEST_RELEASE", to always test against the latest public release.
+# - "THIS_REPOSITORY", to indicate that the module is in this repository.
+%dependencies = (
+ "QtLocation" => {
+ "QtGui" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
+ "QtNetwork" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
+ "QtSql" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
+ "QtCore" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
+ },
+);