Skip to content
QtWS25 Last Chance
  • 0 Votes
    3 Posts
    3k Views
    SGaistS
    Hi, You are probably missing the path to your GStreamer dlls in your PATH (the one in Qt Creator not for your system) You can modify it in the Run part of the Projects Panel
  • Linking to external libraries

    General and Desktop libraries external
    3
    0 Votes
    3 Posts
    948 Views
    7
    @SGaist Yes, I did
  • 0 Votes
    2 Posts
    981 Views
    Chris KawaC
    You can't load Qt dlls when you want to simply because they are linked to your program and need to be resolved at startup. That's just how it works. If you were to load Qt dlls when you wanted (e.g. using QLibrary) you would have to also manually resolve addresses of all functions and classes. It's possible but just impractical at this scale. But here are two ideas what you could do: One way would be to split the app in two. First one would be the loader (the dialog) and it would use QProcess to start the main app when it finishes its work. Handy for updating the main app too as it's a separate file. The other idea would be to make your main app a shared library and load it dynamically with QLibrary at the right time. Same benefit as above except an exe and a library instead of two exes.