On Sunday, 24 January 2021 at 11:44:04 UTC, Marcone wrote:

Qt5 dlls

Well, you are out of luck. It is doable, but...

Normally you would likely want to use static libraries and link them into your executable, with Qt license however it becomes problematic in pretty much any case, you still can embed them using import() and unpack to a temporary directory for manual loading without violating the license.

Another problem mentioned before is implicit dynamic loading where you link with special stub .lib file for automatic loading, which is more common in C++ due to symbol name mangling, that will not work because your code won't have a chance to run main().

Reply via email to