Skip to content

ZIMO-Elektronik/QtQwt

Repository files navigation

QtQwt

build license

CMake wrapper for Qwt.

Table of Contents
  1. Getting Started

Getting Started

Prerequisites

  • C++17 compatible compiler
  • CMake ( >= 3.25 )

Installation

This library is meant to be consumed with CMake.

# Either by including it with CPM
cpmaddpackage("gh:ZIMO-Elektronik/QtQwt@6.3.0")

# or the FetchContent module
FetchContent_Declare(
  QtQwt
  GIT_REPOSITORY "https://github.com/ZIMO-Elektronik/QtQwt"
  GIT_TAG v6.3.0)

target_link_libraries(YourTarget PRIVATE Qt::Qwt)

Build

If the build is running as a top-level CMake project then a small example will be generated.

cmake -Bbuild
cmake --build build --target QtQwtBode

alt_text