Packaging

Requirements

For packaging under Windows, the following is required:

Note

You will need the Full version of NSIS, not the Lite version or the Minimal version.

Steps

  1. Run CMake and build the project in Release mode.

    mkdir .build
    cd .build
    cmake -DCMAKE_BUILD_TYPE=Release ..
    cmake --build . --config Release
    
  2. Run the following command to create the installer:

    cpack -G NSIS -C Debug
    

    The installer will be created in the .build directory.