Skip to content

Commit

Permalink
meson: Require version 0.52.1, remove docs workaround
Browse files Browse the repository at this point in the history
Update to Meson 0.52.1, which should be available in all supported
systems. This allows removing a workaround for documentation as the
new Meson version includes a fixed HotDoc module.
  • Loading branch information
aperezdc committed Mar 13, 2024
1 parent f2901c6 commit 4bd27e8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('wpebackend-fdo', ['c', 'cpp'],
meson_version: '>=0.49',
meson_version: '>=0.52.1',
default_options: [
'b_ndebug=if-release',
'c_std=c99',
Expand Down Expand Up @@ -368,8 +368,6 @@ if get_option('build_docs')
c_smart_index: true,
c_sources: api_headers,
c_include_directories: ['include', meson.current_build_dir()],
# The space here is relevant, see
# https://github.com/mesonbuild/meson/issues/5800#issuecomment-552198354
extra_c_flags: [' -DWPE_FDO_COMPILATION=1'],
extra_c_flags: ['-DWPE_FDO_COMPILATION=1'],
)
endif

0 comments on commit 4bd27e8

Please sign in to comment.