Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

meson: Require version 0.52.1, remove docs workaround #186

Merged
merged 1 commit into from Mar 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 2 additions & 4 deletions meson.build
@@ -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