I have a Qt project. I can build it but I have to keep all external files near with the executable one if I want to use the exe-file as portable program. But a customer wants it to be an one executable without any other files. The size of result file does not matter.
So, if I would use Python, I could do it like this:
[localhost@localhost ~]$ pyinstaller --onefile myscript.py
Can I do the same using Qt (with MinGW)?