This is a fork of the original wxMathPlot library, a framework for mathematical graph plotting in wxWidgets.
cmake -B build -DCMAKE_BUILD_TYPE=[Debug|Release]
cmake --build buildAfter compilation, the examples can be run simply doing:
./build/main_<example>The source code is located in the main/ folder.
When using CMake, locate the library in an internal directory of your project like lib/wxMathPlot/ and then on your CMakeLists.txt add:
add_subdirectory(lib/wxMathPlot)
target_link_libraries(application
wxWidgets::wxWidgets
wxmathplot
... # other libraries
)This will link your application against wxMathPlot.