With a command
qmake -tp vc -r
I'm generating Visual Studio .sln file and a bunch of .vcxproj files from corresponding Qt .pro file and a bunch of .pri files.
I would like those generated .vcxproj files to import my own .props file. A path to which I can provide to qmake or embed it in those .pro/.pri files.
Is it possible? If so then how?
Since by my research it seems that this can by only done by adding a custom extension (which I would have to write first...) to mkspecs...