diff options
| author | Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> | 2021-05-01 01:59:39 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-30 10:59:39 -0700 |
| commit | 8dad905c6f5b8a44ce72de7221b9165a591de107 (patch) | |
| tree | 3c2b1cd59ee4c336124f50c07da1e0530655c06e /ports/matplotplusplus/vcpkg.json | |
| parent | c8c95c50c11689920b9c67d88f9028f7553b389b (diff) | |
| download | vcpkg-8dad905c6f5b8a44ce72de7221b9165a591de107.tar.gz vcpkg-8dad905c6f5b8a44ce72de7221b9165a591de107.zip | |
[matplotplusplus] Fix find and use dependencies (#17552)
* [matplotplusplus] Fix find and use dependencies
* update version record
Diffstat (limited to 'ports/matplotplusplus/vcpkg.json')
| -rw-r--r-- | ports/matplotplusplus/vcpkg.json | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/ports/matplotplusplus/vcpkg.json b/ports/matplotplusplus/vcpkg.json index a664421f8..8d88d5005 100644 --- a/ports/matplotplusplus/vcpkg.json +++ b/ports/matplotplusplus/vcpkg.json @@ -1,7 +1,7 @@ { "name": "matplotplusplus", "version-date": "2021-04-11", - "port-version": 1, + "port-version": 2, "description": "A C++ graphics library for data visualization", "homepage": "https://alandefreitas.github.io/matplotplusplus/", "license": "MIT", @@ -18,6 +18,36 @@ } ], "features": { + "blas": { + "description": "BLAS support for Matplot++", + "dependencies": [ + "blas" + ] + }, + "fftw": { + "description": "fftw3 support for Matplot++", + "dependencies": [ + "fftw3" + ] + }, + "jpeg": { + "description": "JPEG support for Matplot++", + "dependencies": [ + "libjpeg-turbo" + ] + }, + "lapack": { + "description": "LAPACK support for Matplot++", + "dependencies": [ + "lapack" + ] + }, + "opencv": { + "description": "opencv support for Matplot++", + "dependencies": [ + "opencv" + ] + }, "opengl": { "description": "OpenGL backend for Matplot++", "dependencies": [ @@ -25,6 +55,13 @@ "glfw3", "opengl" ] + }, + "zlib": { + "description": "ZLIB and libpng support for Matplot++", + "dependencies": [ + "libpng", + "zlib" + ] } } } |
