Test build scripts for godot tools msi packages
To compile MSI you will need:
- Wix Toolset to be installed
- Add toolset bin folder to system PATH variable (mine was under C:\Program Files (x86)\WiX Toolset v3.11\bin)
- Clone this repository.
- Drop in prebuilt godot.windows.tools.64.exe
- Drop in prepared godot.ico (have used ImageMagic to convert png to ico with command magick convert icon.png -define icon:auto-resize=256,128,64,48,32,16 godot.ico)
- Open command prompt and run candle godot.wxs -dexe_path="godot.windows.tools.64.exe" -dversion="3.0.0.0"
- And then light godot.wixobj
Note that we set variable exe_path to be used by preprocessor by prefixing it with -d.
- Only Major.Minor.Build version number parts matter in MSI versioning (and is limited to [0-255].[0-255].[0-65535]).
- All GUID's used should be upper case.