you can compile the static qt libraries with
configure -static -<other flags>
configure -static -<other flags>
To copy to clipboard, switch view to plain text mode
after compiling static libraries, you should add the following to your pro file. the resulting file will be a stand-alone executable and you will not need any dll files while running the application. and of course the executable's size will be slightly larger, but not as large as the library size.
CONFIG += static
CONFIG += static
To copy to clipboard, switch view to plain text mode
Bookmarks