-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
- Loading branch information
Showing
6 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
if (BUILD_EXPERIMENTAL_OPENGL_BACKEND) | ||
if (MATPLOTPP_BUILD_EXPERIMENTAL_OPENGL_BACKEND) | ||
# Use this to create an OpenGL window as backend | ||
add_executable(matplot_opengl_test ogl_main.cpp) | ||
target_link_libraries(matplot_opengl_test PUBLIC matplot_opengl) | ||
|
||
# Use this to create plots inside an existing OpenGL application | ||
add_executable(matplot_opengl_embed_test ogl_embed_main.cpp) | ||
target_link_libraries(matplot_opengl_embed_test PUBLIC matplot_opengl) | ||
endif () | ||
endif () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters