GregoireUhlrich / cpp-plotting-library

Scientific plotting library for C++
GNU General Public License v3.0
1 stars 0 forks source link

C++ Plotting Tool (CPT)

GitHub Workflow Status (branch)

Summary

This library provides a simple way to plot scientifc data directly from C++.

Get Started

Build

    mkdir build
    cd build
    cmake ..
    make

To build the doc an explicit target must be given to make:

    make doc

The main page can then be found at build/doc/index.html.

Run tests

Once the package has been built, just run

    ctest

Run tests with code coverage

To enable code coverage, the package must be built in coverage mode:

    mkdir build
    cd build
    cmake .. -DCMAKE_BUILD_TYPE=Coverage
    make
    make coverage_units

The coverage report is then available at build/coverage_units/units/index.html.