add -permissive to the boost test

pull/4431/head
Nicole Mazzuca 6 years ago committed by Jussi Pakkanen
parent d5bf869dec
commit 3dd9c18575
  1. 6
      test cases/frameworks/1 boost/meson.build

@ -10,6 +10,12 @@ if not dep.found()
error('MESON_SKIP_TEST boost not found.')
endif
compiler = meson.get_compiler('cpp')
if compiler.has_argument('-permissive')
# boost 1.64, the version we test against, doesn't work with -permissive
add_project_arguments('-permissive', language: 'cpp')
endif
# We want to have multiple separate configurations of Boost
# within one project. The need to be independent of each other.
# Use one without a library dependency and one with it.

Loading…
Cancel
Save