1
0
mirror of https://github.com/projectatomic/bubblewrap.git synced 2026-02-06 18:46:08 +01:00

Merge pull request #491 from ffontaine/main

meson: add tests option
This commit is contained in:
Simon McVittie
2022-04-21 12:15:27 +01:00
committed by GitHub
2 changed files with 9 additions and 1 deletions

View File

@@ -152,4 +152,6 @@ if not meson.is_subproject()
subdir('completions')
endif
subdir('tests')
if get_option('tests')
subdir('tests')
endif

View File

@@ -38,6 +38,12 @@ option(
description : 'enable optional SELINUX support',
value : 'auto',
)
option(
'tests',
type : 'boolean',
description : 'build tests',
value : 'true',
)
option(
'zsh_completion',
type : 'feature',