summaryrefslogtreecommitdiffstats
path: root/sync.profile
diff options
context:
space:
mode:
authorChris Craig <craig@ics.com>2012-05-10 18:01:25 -0400
committerChris Craig <craig@ics.com>2013-03-01 03:33:27 +0100
commit6b8d228ab8cc2a424f80d5a76f93d598ffac454f (patch)
tree32ccec5e60ea7b7c87a22d12ffe5ef4b4cceea7a /sync.profile
parentf6c2f5c3a36f148cf1654c0fea576282b3c83b1c (diff)
Qt5 release fixes
Modifications to build with the final Qt 5 release. Because the Qt module build process changed a lot, there are a number of changes. Most significantly, all classes are renamed to begin with 'Q', since that's the only way to get syncqt to install them correctly. Change-Id: I987fd426702a49991e930d1670d9c76be994eab9 Reviewed-by: Chris Craig <craig@ics.com>
Diffstat (limited to 'sync.profile')
-rw-r--r--sync.profile7
1 files changed, 2 insertions, 5 deletions
diff --git a/sync.profile b/sync.profile
index 6dc68e5..e7550c5 100644
--- a/sync.profile
+++ b/sync.profile
@@ -1,5 +1,5 @@
%modules = ( # path to module name map
- "QtAddOnJsonStream" => "$basedir/src",
+ "QtAddOnJsonStream" => "$basedir/src/jsonstream",
);
%moduleheaders = ( # restrict the module headers to those found in relative path
);
@@ -10,9 +10,6 @@
"core" => "#include <QtCore/QtCore>\n",
"network" => "#include <QtNetwork/QtNetwork>\n",
);
-%modulepris = (
- "QtAddOnJsonStream" => "$basedir/modules/qt_jsonstream.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:
@@ -20,5 +17,5 @@
# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
#
%dependencies = (
- "qtbase" => "refs/heads/master",
+ "qtbase" => "refs/heads/stable",
);