cargo-wix: A cargo subcommand to create Windows installers

About | Installation | Usage | Documentation

What is cargo-wix?

The cargo-wix project is a subcommand for Cargo that builds a Windows installer (msi) using the Wix Toolset from the release build of a Rust binary project. It also supports signing the Windows installer if a code signing certificate is available using the SignTool application available in the Windows 10 SDK.

Installation

The cargo-wix project can be installed on any platform supported by the Rust programming language, but the Wix Toolset is Windows only; thus, this project is only useful when installed on a Windows machine. Ensure the following dependencies are installed before proceeding. Note, Cargo is installed automatically when installing the Rust programming language.

The SignTool executable is used to optionally sign an installer. It is available as part of the Windows 10 SDK.

Note, the WiX Toolset compiler (candle) and linker (light) executables located in the WiX Toolset bin folder must be included in the PATH environment variable for the cargo wix subcommand to work properly. The typical install location for the WiX Toolset bin folder is: C:\Program Files (x86)\WiX Toolset\bin. Please add this path to the PATH system environment variable.

After installing and configuring the dependencies, execute the following command to install the cargo-wix subcommand:

dos C:\>cargo install cargo-wix

Usage

Important, start and use the Developer Prompt that was installed with the Windows 10 SDK. This will ensure the signtool command is available in the PATH environment variable if signing the installer with the cargo-wix subcommand. If not signing the installer, then any command prompt can be used.

Navigate to the Rust binary project's root folder and run the subcommand:

dos C:\Path\To\Project\>cargo wix --init

This will create the wix folder in the root of the project and then it will create the wix\main.wxs file from the WiX Source (wxs) embedded within the subcommand. The generated wix\main.wxs file can be used without modification with the following command to create an installer for the project:

dos C:\Path\To\Project\>cargo wix

The cargo wix subcommand will search for the main.wxs file in the wix folder. When found, it will compile the main.wxs file and then link the object file (main.wixobj) to create the Windows installer (msi). The installer will be located in the target\wix folder. All artifacts of the installer compilation and linking process are placed within the target\wix folder. Paths in the main.wxs file should be relative to the project's root folder, i.e. the same location as the Cargo.toml manifest file.

A different WiX Source (wxs) file from the wix\main.wxs file can be used by specifying a path to it at the command as follows:

dos C:\Path\To\Project\>cargo wix Path\To\WiX\Source\file.wxs

The --print-template flag, which prints a WiX Source (wxs) template stdout, can be used to create the main.wxs file. A template.wxs file specifically designed to work with this subcommand is embedded within the cargo-wix binary. Use the following commands to create the main.wxs file in the wix subfolder. The main.wxs can then be customized using a text editor, but modification of the xml preprocessor variables should be avoided to ensure the cargo wix command functions properly.

dos C:\Path\To\Project\>mkdir wix C:\Path\To\Project\>cargo --print-template > wix\main.wxs

To sign the installer (msi) once it has been created, use the --sign flag with the subcommand as follows:

dos C:\Path\To\Project\>cargo wix --sign

Use the -h,--help flag to display information about additional options and features.

dos C:\Path\To\Project\>cargo wix -h

License

The cargo-wix project is licensed under either the MIT license or Apache 2.0 license. See the LICENSE-MIT or LICENSE-APACHE files for more information about licensing and copyright.