I\'m absolutely new to Qt. I\'ve made a program using C++ in Visual Studio 2010 in which I use the external library from Dcmtk. I now want to add a user interface to that pr
/MT is a compiler flag. You can specify flags in your .pro file like this:
/MT
QMAKE_CXXFLAGS += /MT
Moreover, you probably want to specify /MTd for debug build:
/MTd
Release:QMAKE_CXXFLAGS += /MT Debug:QMAKE_CXXFLAGS += /MTd