diff options
Diffstat (limited to 'vcpkg/ports/plplot/usage')
| -rw-r--r-- | vcpkg/ports/plplot/usage | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/vcpkg/ports/plplot/usage b/vcpkg/ports/plplot/usage new file mode 100644 index 0000000..3b61041 --- /dev/null +++ b/vcpkg/ports/plplot/usage @@ -0,0 +1,22 @@ +plplot provides CMake targets: + + find_package(plplot CONFIG REQUIRED) + # C API, PLplot Core Library + target_link_libraries(main PRIVATE PLPLOT::plplot) + # C++ binding + target_link_libraries(main PRIVATE PLPLOT::plplotcxx) + # wxWidgets GUI binding (optional, feature "wxwidgets") + target_link_libraries(main PRIVATE PLPLOT::plplotwxwidgets) + # CSIRO Cubic Spline Approximation Library + target_link_libraries(main PRIVATE PLPLOT::csirocsa) + # QSAS Time Format Conversion Library + target_link_libraries(main PRIVATE PLPLOT::qsastime) + +plplot provides pkg-config modules: + + # C++ binding + plplot-c++ + # Core C library + plplot + # WxWidgets binding, optional, feature "wxwidgets" + plplot-wxwidgets |