You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* correct cmake install target condition
The cmake variable BUILD_INSTALLER was renamed to
MATPLOTPP_BUILD_INSTALLER, but it was not updated in
source/matplot/CMakeLists.txt. As a result Matplot++ was not installed
completely via cmake install target with cmake presets provided.
This patch completes the renaming and now cmake install works as
expected.
* correct more cmake variable names after rename
I found more variables that seemed to be missed by the recent renaming.
This patch completes renaming of variables:
- BUILD_FOR_DOCUMENTATION_IMAGES
- BUILD_HIGH_RESOLUTION_WORLD_MAP
- BUILD_WITH_PEDANTIC_WARNINGS
- BUILD_EXPERIMENTAL_OPENGL_BACKEND
Copy file name to clipboardExpand all lines: index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2215,7 +2215,7 @@ There are two dependencies in [`source/3rd_party`](source/3rd_party). These depe
2215
2215
2216
2216
You can define `WITH_SYSTEM_NODESOUP=ON` or `WITH_SYSTEM_CIMG=ON` in the cmake command line to use a system-provided version of these dependencies.
2217
2217
2218
-
There's an extra target `matplot_opengl` with the experimental [OpenGL backend](#backends). You need to define `BUILD_EXPERIMENTAL_OPENGL_BACKEND=ON` in the CMake command line to build that target. In that case, the build script will also look for these extra dependencies:
2218
+
There's an extra target `matplot_opengl` with the experimental [OpenGL backend](#backends). You need to define `MATPLOTPP_BUILD_EXPERIMENTAL_OPENGL_BACKEND=ON` in the CMake command line to build that target. In that case, the build script will also look for these extra dependencies:
Copy file name to clipboardExpand all lines: test/generate_examples/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,4 +4,4 @@ This is a visual unit test where the `generate_examples` target will run all oth
4
4
5
5
Everytime we update the library, we regenerate the examples to make sure everything is not only working ok but also *looking* good.
6
6
7
-
The library needs to be compiled with the CMake option `BUILD_FOR_DOCUMENTATION_IMAGES` for this test to work. Also, you need to run this target from the project root directory so that the filesystem can find the build and documentation directories.
7
+
The library needs to be compiled with the CMake option `MATPLOTPP_BUILD_FOR_DOCUMENTATION_IMAGES` for this test to work. Also, you need to run this target from the project root directory so that the filesystem can find the build and documentation directories.
0 commit comments