aboutsummaryrefslogtreecommitdiffstats
path: root/sync.profile
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2015-03-09 16:39:32 +0100
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-03-16 10:27:07 +0000
commit6767fcfaf234bc3e0f92f156fa68266d0aac7d4a (patch)
tree760b539969d20ba53210ec592946756d5c5a5f17 /sync.profile
parent20927cbc98cf6bda8dab9ab5f3753f59855752bc (diff)
Fix usage of QtQmlDevTools private headers on OSX with framework builds
Previously this module borrowed its private headers from QtQml, so that when writing QT += qmldevtools-private, you'd get the private headers from QtQml. This doesn't work when QtQml is built as a framework. A cleaner solution is to give this module its headers proper by letting syncqt create the forwarding headers correctly (and consequently also include them in make install). In order for this to work, the included headers themselves cannot include any headers from QtQml, which this patch also takes care of, through a centralized inclusion of qv4global_p.h. Change-Id: I9bb8337956a2774cfaca6b338369face6c6ee785 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Frederik Gladhorn <frederik.gladhorn@theqtcompany.com>
Diffstat (limited to 'sync.profile')
-rw-r--r--sync.profile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sync.profile b/sync.profile
index 4f4e767129..f7255bea0a 100644
--- a/sync.profile
+++ b/sync.profile
@@ -7,7 +7,7 @@
"QtQmlDevTools" => "$basedir/src/qmldevtools",
);
%moduleheaders = ( # restrict the module headers to those found in relative path
- "QtQmlDevTools" => "../qml/parser",
+ "QtQmlDevTools" => "../qml/parser;../qml/jsruntime;../qml/qml/ftw;../qml/compiler;.",
);
%deprecatedheaders = (
);