Is it possible with visual studio to statically compile a QtWidgets project so that no dlls have to be shipped together with the executable file? How do I go about this?
@JesperJuhl I frequently statically link MS Runtime Support /MT - "Causes the application to use the multithread, static version of the run-time library."learn.microsoft.com/en-us/cpp/build/reference/…
/MT- "Causes the application to use the multithread, static version of the run-time library." learn.microsoft.com/en-us/cpp/build/reference/…