Judging by the qmake source code, this is not possible. I reviewed qmake\generators\win32\msbuild_objectmodel.cpp both Qt4.8.5 and the latest version of Qt5 , and the only Property Sheets added by qmake, Microsoft.Cpp.*.props (of various kinds):
xml << tag("Import") << attrTag("Project", "$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props") << attrTag("Condition", "exists('$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props')") << closetag() << closetag();
I solved this problem by creating a quick Python script that does post processing in the generated * .vcxproj files:
for l in fileinput.FileInput('Project.vcxproj', inplace=1): print l, if 'PropertySheets' in l: print ' <Import Project="YourPropertySheets.props" />'
Of course, it would be better to fix qmake with the new features, but since there are only three people, including you and me, who are concerned about this, I believe that hacking is the best solution.
source share