Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 819 Bytes

File metadata and controls

44 lines (28 loc) · 819 Bytes

wxMathPlot library

This is a fork of the original wxMathPlot library, a framework for mathematical graph plotting in wxWidgets.

Compilation

Linux

cmake -B build -DCMAKE_BUILD_TYPE=[Debug|Release]
cmake --build build

Examples

After compilation, the examples can be run simply doing:

./build/main_<example>

The source code is located in the main/ folder.

Integration with other code

CMake

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.

Contact