Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
How to create a file .pdb in release builds? (Qt5.4.0, compiler VS 2010)
I solved this problem by adding a .pro file lines @ QMAKE_LFLAGS_RELEASE += /DEBUG -Zi @
I think your solution is wrong.
-Zi is a compiler flag, /Debug is a linker flag.
so the right way to do is this:
QMAKE_CXXFLAGS += /Zi QMAKE_LFLAGS_RELEASE += /DEBUG