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