mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 02:19:00 +08:00
927b997977
* [plplot] Update, cleanup * Revise dependencies and features
14 lines
564 B
Plaintext
14 lines
564 B
Plaintext
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)
|