Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
the meson build script for gtk3 has: - cairo_dep = dependency('cairo', version: cairo_req, required: cc.get_id() != 'msvc') that is cairo is not required if msvc, but this is because they use another search criteria right after for windows - if not cairo_dep.found() and cc.get_id() == 'msvc' - if cc.has_header('cairo.h') and cc.has_header('cairo-win32.h') - cairo_dep = cc.find_library('cairo', required: false) - endif - endif - - if not cairo_dep.found() - cairo_dep = dependency('cairo', version: cairo_req, - fallback : ['cairo', 'libcairo_dep']) - endif and eventually cairo has to be found for gtk to be built
- Loading branch information