Build from source on Windows

Prerequisites

Required components to compile LimeSuiteNG project:

  • C++ compiler (GCC, Clang, MSVC)

  • CMake

Optional components that add specific functionality:

  • wxWidgets : allows graphical user interface

  • SoapySDR : allows building of limesuiteng plugin for SoapySDR

Compilation

In the root directory of the repository run these commands:

cmake -B build
cmake --build build --config Release

After a successful compilation the resulting binaries are placed in the build/bin/ directory located in the root directory of the repository.

Installing the built software

Optionally can be installed into system, installation requires to be ran with Administrative privileges.

Continuing on from the previous command block, execute:

cmake --install build --config Release