blob: 3b6104145116fe870987ea55ba9e763f3a6ec537 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|