Plots Find Matplot++ 1find_package(Matplot++ QUIET) Link Matplot++ 1 2 3 4if (Matplot++_FOUND) add_executable(plots plots.cpp) target_link_libraries(plots PRIVATE Matplot++::matplot) endif () Headers 1#include <matplot/matplot.h> Line plot 1 2matplot::plot(std::vector{1, 2, 3, 4, 5, 6}); matplot::show(); Share Snippets