meson.build 421 B

1234567891011121314151617
  1. # Copyright Catch2 Authors
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at
  4. # https://www.boost.org/LICENSE_1_0.txt)
  5. # SPDX-License-Identifier: BSL-1.0
  6. project(
  7. 'catch2',
  8. 'cpp',
  9. version: '3.1.1', # CML version placeholder, don't delete
  10. license: 'BSL-1.0',
  11. meson_version: '>=0.49.0',
  12. )
  13. subdir('src/catch2')
  14. subdir('tests')