Yes, but I'd like to clarify one thing in so far as I was not clear:
Some of the modules from Qt are GPL3 and that means literally:
"provided that you also meet, for each linked independent module, the terms and
conditions of the license of that module."
And if that Module happens to be licensed as GPL3 you are screwed, whatever the preceding statement states....
Because it requires to reveal ALL sourcecode when statically linked....
See, dynamic linking is OK, since it is a separate, self contained binary, so for that only its license applies.
When you statically link it is not a self contained library anymore and your binary will inherit GPL3 because of that!!!!!
As long as you link dynamic there are no licensing issues, apart from mentioning and providing a link to the sourcecode and the GTK3 license for that module you are using. So there is still work involved and you can NOT distribute your application without mentioning that license and providing a link to that sourcecode.
Static linking means your program becomes GTK3 automatically and
all sources need to be provided.
That is also the reason that Freepascal's libraries - not the compiler, that is GPL'd - are distributed as LGPL
with linker exception (monoliths allowed without further ado), but Qt is NOT!!
And even with Freepascal you need to be careful when FPC provides bindings (which are either licensed lgpl+linker exception or with a more liberal license like M.I.T. or Apache) and the licenses of the binaries for which these bindings are for...(like Qt

)
But you only run into that if a program becomes really successful and then it should be no problem to pay licensing fees. Which your company lawyer or compliance officer will happily advise you to do..

(If you can pay those two, just shy of $500.000... well... then it is a success)