An open API service indexing awesome lists of open source software.

https://github.com/orbitcowboy/gnuplot-cpp

Automatically exported from code.google.com/p/gnuplot-cpp
https://github.com/orbitcowboy/gnuplot-cpp

c-plus-plus cpp gnuplot gnuplot-cpp

Last synced: 6 months ago
JSON representation

Automatically exported from code.google.com/p/gnuplot-cpp

Awesome Lists containing this project

README

          

# gnuplot-cpp
C++ interface to Gnuplot via POSIX pipes

This project was hosted on [google code](https://code.google.com/archive/p/gnuplot-cpp/). Since google dropped google code, this project was moved to github.

Total alerts
![Code scanning - action](https://github.com/orbitcowboy/gnuplot-cpp/workflows/Code%20scanning%20-%20action/badge.svg)

# Use with CMake Projects

To use this interface within your CMake projects, you can use the gnuplot-cppConfig.cmake. Just make sure, that CMake is able to find the gnuplot-cpp directory, either by moving it to the CMake search path, or setting graybat-cpp_dir.

To include it into your project just add:
```
find_package(gnuplot-cpp REQUIRED)
include_directories(${gnuplot-cpp_INCLUDE_DIRS})
```