cppcheck/win_installer
chrchr-github efa8a08407
Set main version to 2.13.99 (#5818)
2024-01-04 22:00:30 +01:00
..
images Changed size of windows installer images to avoid resizing (caused visible artifacts) 2014-03-07 19:30:35 +01:00
GPLv3.txt added .gitattributes and normalized files (#4668) 2022-12-30 21:33:45 +01:00
config.wxi added .gitattributes and normalized files (#4668) 2022-12-30 21:33:45 +01:00
cppcheck.sln added .gitattributes and normalized files (#4668) 2022-12-30 21:33:45 +01:00
cppcheck.wixproj added .gitattributes and normalized files (#4668) 2022-12-30 21:33:45 +01:00
cppcheck.wxs addons/namingng.py: Fix commandline use. (#5793) 2023-12-30 20:54:03 +01:00
productInfo.wxi Set main version to 2.13.99 (#5818) 2024-01-04 22:00:30 +01:00
readme.txt release-windows.yml: use windows-2022 (#3939) 2022-05-13 19:48:17 +02:00

readme.txt

The Wix Installer for Windows
=============================

cppcheck Windows installer is created with WiX:
http://wixtoolset.org/

You'll need:
 - WiX
 - MSBuild (coming with Visual Studio)
 - VS 2015 CRT merge module

Configuring
-----------

Installer configuration is done in file config.wxi. Depending how you build
cppcheck you may need to alter the paths for binaries.

Product version and other info
------------------------------

Version number and product name are set in file productInfo.wxi.

Building installer
------------------

Before building the installer make sure all the components are build:
 - LIB dynamic link library (cppcheck-core.dll)
 - CLI executable (cppcheck.exe)
 - GUI executable (cppcheck-gui.exe)
 - GUI translations (*.qm) - generated by the Qt's lrelease tool

And that runtime files are available:
  - Qt runtimes:
      Qt5Core.dll, Qt5PrintSupport.dll, Qt5Widgets.dll, Qt5Gui.dll and platforms/qwindows.dll
  - MS CRT merge module (Microsoft_VC143_CRT_x86.msm or Microsoft_VC143_CRT_x64.msm)

Build installer by giving this command line in VS command prompt (or run
vcvars32.bat in DOS prompt first to setup environment):

> msbuild cppcheck.wixproj /p:Platform=x86,ProductVersion=X.YY

For example:
> msbuild cppcheck.wixproj /p:Platform=x86,ProductVersion=1.40

Installer is created to Build -folder.