0.0
No commit activity in last 3 years
No release in over 3 years
This gem provides a small command to gather all application files required for a Qt app deploy for Windows in one place ready for packaging.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0

Runtime

= 0.0.0.3
 Project Readme

QtDeployWin

Win at deploying your Qt application for Windows.

This is a tiny command-line utility that takes a Qt application executable file built for Windows and produces a directory with a complete set of dependencies required to run the executable on other machines.

It is effectively a thin wrapper around Qt's windeployqt that tries to guess and set some environment variables for you and does some other useful actions that you don't need to do manually.

Installation

Install the command line utility:

$ gem install qt-deploy-win

Or to use it in your project just add this to Gemfile

gem 'qt-deploy-win'

And then execute:

$ bundle

Usage

Pass you freshly built app executable path and an output dir (will be cleared!).

qt-deploy-win path/to/my-qt-app.exe output-dir/

Warning! Output dir is cleared every time you run the utility, so use carefully and do not lose your files!

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request