qmake of Qt 5.5 introduces a new predefined variable
VERSION_PE_HEADER. It was not part of the known keywords
for the qmake profile editor.
This patch adds VERSION_PE_HEADER.
Change-Id: Iae671d89ff623c4062da621e571769df736fa6d3
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
A lot of qmake expand and test functions were missing from
the ProFileCompletionAssistProvider.
This patch brings the database on par with the listing in
the qmake build in functions from current qmakebuiltins.cpp.
Change-Id: I635776f6b449d62fd6a505969451e8630fb26ee8
Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Currently we pass in some places by value, elsewhere by const ref and
for some weird reason also by const value in a lot of places. The latter
is particularly annoying, as it is also used in interfaces and therefore
forces all implementors to do the same, since leaving the "const" off is
causing compiler warnings with MSVC.
Change-Id: I65b87dc3cce0986b8a55ff6119cb752361027803
Reviewed-by: hjk <hjk121@nokiamail.com>