For a small C ++ / Qt project, I would like to create an installer.
- Code written in Qt Creator
- In principle (when adding some Qt libraries), a simple xcopy installation is possible.
- I could just pack the (zip / rar) files, but I want to "feel the installer a bit"
- There are no entries in the registry, etc.
- The code is for Win Desktop only, so no cross-platform requirements
Basically the installer should
- Request Target Directory
- License Acceptance Request
- .. and install
From my point of view (as a programmer), the installer should be easy to configure and find out . I would be perfect if I could create it from Qt Creator. Because for a nonprofit open source project, the installer should be free (or at least at a very reasonable price).
What would you recommend?
source
share