Skip to content

Commit

Permalink
meson: also search for cython3
Browse files Browse the repository at this point in the history
  • Loading branch information
infirit committed Jul 23, 2022
1 parent 5baec94 commit cae20c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion module/meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
cython = find_program('cython', required: true)
cython = find_program('cython', required: false)
if not cython.found()
cython = find_program('cython3', required: true)
endif

blueman_c = custom_target(
'blueman_c',
Expand Down

0 comments on commit cae20c4

Please sign in to comment.