[Qt] Build problem due to newly introduced WebKit/qt/Api/DerivedSources.pro
Hi all; Trying to build WebKit on Windows I get; Reading C:/Qt/WebKit/WebCore/WebCore.pro [C:/Qt/WebKit/WebKitBuild/Release/WebCore] WARNING: Failure to find: ..\..\..\WebKit\qt\Api\qwebkitversion.h echo WEBKIT_CLASS_HEADERS WARNING: Failure to find: = WARNING: Failure to find: ..\include\QWebInspector echo WEBKIT_PRIVATE_HEADERS WARNING: Failure to find: = Seems to be due to newly checked in DerivedSources.pro. Also there is another problem in this file; DerivedSources.pro line 36 has; eval(qtheader_module.commands += echo \\\'\$${LITERAL_HASH}include <QtNetwork/QtNetwork>\\\' >> $${qtheader_module.target};) This won't work since < and > are special characters for Windows shell so it has to be double quoted like; eval(qtheader_module.commands += echo \\\"\$${LITERAL_HASH}include <QtNetwork/QtNetwork>\\\" >> $${qtheader_module.target};) Regards, İsmail
On 2/5/10 4:51 PM, İsmail Dönmez wrote:
Seems to be due to newly checked in DerivedSources.pro.
Try applying this: http://gist.github.com/295937 I have to run but I'll land this on Monday. Tor Arne
On Fri, Feb 5, 2010 at 8:33 AM, Tor Arne Vestbø <tor.arne.vestbo@nokia.com>wrote:
On 2/5/10 4:51 PM, İsmail Dönmez wrote:
Seems to be due to newly checked in DerivedSources.pro.
Try applying this:
I have to run but I'll land this on Monday.
Tested & works fine. Very neat trick you got there btw (for escaping with ^ on Windows). Thanks, İsmail
participants (2)
-
İsmail Dönmez
-
Tor Arne Vestbø