Saltar al contenido principal

Binarycreator

Download the Qt IFW from the official Qt site (open source under GPL/LGPL) and run binarycreator --help . Your first installer is only three files away. Have you used binarycreator in production? Or struggled with a peculiar bug? Let me know in the comments below.

<!-- In config.xml --> <Installer> <RepositorySettings> <Repository url="https://updates.myapp.com/repo" /> </RepositorySettings> </Installer> When things go wrong (missing dependencies, broken scripts), run: binarycreator

binarycreator ... --silent-installer MyAppSilent.exe For online installers, add a repository URL so the app can self-update: Download the Qt IFW from the official Qt

binarycreator ... --exclude-regex "(.*\.git.*|.*\.pyc$|.*\.DS_Store)" Generate an installer that runs without UI (for enterprise deployment): !-- In config.xml --&gt

binarycreator -c config/config.xml -p packages -e myapp.core,myapp.docs MyAppOnlineInstaller.exe And for an (single big file with everything):

Volver arriba