Skip to content

Commit

Permalink
matplotplusplus: add JPEG, PNG, TIFF support
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Jan 13, 2024
1 parent 095498c commit d0b8b4f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions recipes/matplotplusplus/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,21 @@ def configure(self):
if self.options.shared:
self.options.rm_safe("fPIC")

self.options["cimg"].enable_curl = False
self.options["cimg"].enable_display = False
self.options["cimg"].enable_ffmpeg = False
self.options["cimg"].enable_fftw = False
self.options["cimg"].enable_heif = True
self.options["cimg"].enable_jpeg = "libjpeg"
self.options["cimg"].enable_magick = False
self.options["cimg"].enable_opencv = False
self.options["cimg"].enable_openexr = False
self.options["cimg"].enable_openmp = True
self.options["cimg"].enable_png = True
self.options["cimg"].enable_tiff = True
self.options["cimg"].enable_tinyexr = False
self.options["cimg"].enable_zlib = False

def layout(self):
cmake_layout(self, src_folder="src")

Expand Down

0 comments on commit d0b8b4f

Please sign in to comment.