Integrating dumpcpp in VS build
Hi there - according to the Qt docs, it is possible to integrate dumpcpp.exe in to the qmake build system by adding TYPELIBS to the .pro file:
Code:
TYPELIBS = $$system(dumpcpp -getfile {00062FFF-0000-0000-C000-000000000046})
Is this possible using MSVS? If so, how would I do this? Configuring the VS build is a little bit different than just editing the .pro file.
Thanks in advance,
Jimmy
Re: Integrating dumpcpp in VS build
You can change the qmake project and then try to generate a VS project out of it using qmake -tp vc.
Re: Integrating dumpcpp in VS build
Okay, great. Thanks wysota.