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
- Host: GitHub
- URL: https://github.com/orbitcowboy/gnuplot-cpp
- Owner: orbitcowboy
- Created: 2015-03-13T09:00:05.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2022-02-04T15:15:54.000Z (almost 4 years ago)
- Last Synced: 2025-06-09T06:02:29.685Z (7 months ago)
- Topics: c-plus-plus, cpp, gnuplot, gnuplot-cpp
- Language: C++
- Size: 172 KB
- Stars: 14
- Watchers: 3
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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.

# 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})
```