Hello,
sometimes i need to make smaller console programs. They are simple enough that i don't need Qt for them, but i still want to use Qt Creator for development.
Development and debugging is fine, but i can't run the built exe file outside of creator. (build in release mode, of course)
Double clicking on the exe i'm presented with an "impossible to find entry point" dialog.
The project is being getting compiled with the Qt 6.10 MinGW Kit
Initially i thought the problem was me using MinGW instead of MSVC. Same issue with the LLVM and MSVC kits.
Instead, if I build the project with plain MinGW (copy CMakeList.txt and source files in another folder, use VSCodium's CMake plugin), i get a working executable.
I'd like to understand what i'm doing wrong:
Is using a Qt kit to build a non-qt application the problem?
Can/Should i add plain MinGW as a "kit"?
Is there a way to do what i want with Qt Creator? Because while i can use VSCodium or another IDE for debugging, i really prefer Qt Creator's interface.
Thanks