This folder contains the WiX Toolset project for creating an MSI installer for the MusStream application.
- WiX Toolset installed (download from https://wixtoolset.org/)
- The application must be built in Release mode (appMusStream.exe should exist in ..\build\Desktop_Qt_6_11_0_MinGW_64_bit-Release)
Product.wxs: WiX source file defining the installerMusStreamInstaller.wixproj: MSBuild project filebuild.bat: Batch script to build the MSI
Run build.bat in this folder.
msbuild MusStreamInstaller.wixproj
candle.exe Product.wxs -out obj\Product.wixobj
light.exe obj\Product.wixobj -out MusStreamInstaller.msi
- Update the GUIDs in Product.wxs with unique values
- Add more components for Qt libraries, data files, etc. as needed
- The installer installs to Program Files\MusStream by default