Skip to content

Commit

Permalink
Merge pull request #661 from kiwix/max-dependence-version
Browse files Browse the repository at this point in the history
Check max version of libzim/libkiwix
  • Loading branch information
kelson42 authored Mar 13, 2024
2 parents 3377f9e + 19f11d8 commit 331743e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ endif

thread_dep = dependency('threads')
kiwixlib_dep = dependency('kiwix', version:'>=13.0.0', static:static_linkage)
libzim_dep = dependency('libzim', version:'>=8.1.0', static:static_linkage)
kiwixlib_dep = dependency('kiwix', version:'<14.0.0', static:static_linkage)
libzim_dep = dependency('libzim', version:'>=9.0.0', static:static_linkage)
libzim_dep = dependency('libzim', version:'<10.0.0', static:static_linkage)

all_deps = [thread_dep, kiwixlib_dep, libzim_dep]

Expand Down

0 comments on commit 331743e

Please sign in to comment.