How to indicate in the qmake 4.5.pro file that I want to ignore the library in msvc8 (2005)

I have a communication problem. It can be solved by specifying in the project properties msvc8 → Linker → Input → Ignore Specific Library: msvcrtd.lib. This library conflicts with libcpmtd.lib. But I can not find how to do the same in the qmake.pro file, which is used to create the .vcproj file. Thanks for any help / LG

+4
source share
1 answer

Write QMAKE_LFLAGS_DEBUG += /NODEFAULTLIB:libcpmtd in the .pro file.

+5
source

Source: https://habr.com/ru/post/1307536/


All Articles