Quote Originally Posted by MKGirlism View Post
And how do I statically link these 3rd party libraries?
You need the static build of those libraries.

Which is why usually no one does static linking, as it is way too much work.

Quote Originally Posted by MKGirlism View Post
I already got Qt-specific libraries statically linked, although I find it pointless to include, let's say, "libwebp", while the App has absolutely nothing to do with networking...
This has nothing to do with networking, WebP is an image format.

Usually these are plugins but since you are doing a static build of Qt these are now built into Qt.

You can likely disable them during configure, as I said above.

Or just not statically link Qt and only ship the image plugins you need.

Cheers,
_