Add option to disable building unit tests in Meson build file.
This commit is contained in:
parent
535205e2ac
commit
ce7b153021
2 changed files with 4 additions and 1 deletions
|
@ -14,4 +14,6 @@ project(
|
|||
)
|
||||
|
||||
subdir('src/catch2')
|
||||
subdir('tests')
|
||||
if get_option('tests')
|
||||
subdir('tests')
|
||||
endif
|
||||
|
|
1
meson_options.txt
Normal file
1
meson_options.txt
Normal file
|
@ -0,0 +1 @@
|
|||
option('tests', type: 'boolean', value: true, description: 'Build the unit tests')
|
Loading…
Add table
Add a link
Reference in a new issue