layout | title | nav_order | has_children | parent | grand_parent | has_toc |
---|---|---|---|---|---|---|
default |
Find it as a CMake Package |
1 |
false |
CMake targets |
Integration |
false |
If you have the library installed, you can call
find_package(Matplot++)
from your CMake build script.
When creating your executable, link the library to the targets you want:
add_executable(my_target main.cpp)
target_link_libraries(my_target PUBLIC matplot)
Add this header to your source files:
#include <matplot/matplot.h>