[Webkit-unassigned] [Bug 61207] [Qt] Export files under Symbian Qt WebKit build

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon May 23 14:21:28 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=61207





--- Comment #6 from Janne Koskinen <koshuin at gmail.com>  2011-05-23 14:21:28 PST ---
(In reply to comment #5)
> Also, the production Symbian environment does not execute the install
> step so that is why we need to do it here.  And this needs to

Thats why the extra compiler target is used to copy like this:
>inst_headers.commands = $$QMAKE_COPY ${QMAKE_FILE_NAME} ${QMAKE_FILE_OUT}
This creates xcopy/cp command.
>QMAKE_EXTRA_COMPILERS += inst_headers
Adds it as a separate make step, not part of install.

Just copy/paste inst_headers parts and create new extra compiler target say inst_headers_platform and use $$INSTALL_HEADERS as input. There is no need for those loops unless you are doing post processing on the headers in webkit/include before the export phase. Target would be something like this:
>inst_headers_platform.output = >$$MW_LAYER_PUBLIC_EXPORT_PATH(QtWebKit/QtWebKit/${QMAKE_FILE_BASE}${QMAKE_FILE_EXT})

At least this how I read the code. Your target directory is the same for both API an include so no need for the distinction.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list