Skip to content

Commit

Permalink
Fix: add pure: false to meson.build (cbrunet#74).
Browse files Browse the repository at this point in the history
Since meson-python-0.13.0 it's required for non-pure builds.
  • Loading branch information
bzamecnik committed Apr 19, 2023
1 parent e61de6b commit 4854154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ project(
poppler_dep = dependency('poppler-cpp', version: '>=0.26.0')

python_mod = import('python')
python3 = python_mod.find_installation('python3')
python3 = python_mod.find_installation('python3', pure: false)

pybind11_proj = subproject('pybind11')
pybind11_dep = pybind11_proj.get_variable('pybind11_dep')
Expand Down

0 comments on commit 4854154

Please sign in to comment.