diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/plplot/usage | |
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 |