cppcheck/win_installer
Daniel Marjamäki dafba604ff 1.70: Set versions 2015-09-04 19:36:34 +02:00
..
images Changed size of windows installer images to avoid resizing (caused visible artifacts) 2014-03-07 19:30:35 +01:00
GPLv3.rtf Installer: Add GPL v3 license. 2010-01-17 01:21:45 +02:00
config.wxi Updated windows intaller: 2015-09-04 13:18:18 +02:00
cppcheck.wixproj Prepared WiX installer for x64 releases (#2068) 2015-07-22 13:33:24 +02:00
cppcheck.wxs Updated windows intaller: 2015-09-04 13:18:18 +02:00
productInfo.wxi 1.70: Set versions 2015-09-04 19:36:34 +02:00
readme.txt Small ReadMe updates 2014-01-04 12:38:23 +01: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 (also with Express edition))
 - VS 2010 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:
      QtCore4.dll and QtGui4.dll
  - MS CRT merge module (Microsoft_VC100_CRT_x86.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.