I'm trying to use COM object in my application. According to help "dumpcpp can be integrated into the qmake build system".
http://doc.qt.io/qt-4.8/http://doc.qt.io/qt-5/activeqt-dumpcpp.html
So my code in .pro file for qmake is
Qt Code:
  1. TYPELIBS = $$system(dumpcpp "C:\Component.exe")
  2. isEmpty(TYPELIBS){
  3. message("Component is not found!")
  4. REQUIRES += Component
  5. }
To copy to clipboard, switch view to plain text mode 
The result of the code is "Component is not found!"
If I run dumpcpp in power shell with comand
Qt Code:
  1. C:\Qt\5.5\mingw492_32\bin> ./dumpcpp.exe "C:\Component.exe"
To copy to clipboard, switch view to plain text mode 
,
I have component.cpp and component.h files.
(I tried to use different quotes, slash, of back slash).
Please help me.