diff options
-rw-r--r-- | INSTALL.md | 4 | ||||
-rw-r--r-- | test/meson.build | 10 |
2 files changed, 10 insertions, 4 deletions
@@ -39,6 +39,10 @@ Options can be set by passing C-style "define" options to `configure`: meson configure -Dc_args="-march=native" -Dprefix="/opt/mypackage/" +Note that some options, such as `strict` and `werror` are for +developer/maintainer use only. Please don't file issues about anything that +happens when they are enabled. + Building -------- diff --git a/test/meson.build b/test/meson.build index 3cecff6..e7a2a9f 100644 --- a/test/meson.build +++ b/test/meson.build @@ -1,5 +1,3 @@ -autoship = find_program('autoship', required: false) - unit_tests = [ 'sratom', ] @@ -18,6 +16,10 @@ foreach unit : unit_tests ) endforeach -if autoship.found() - test('autoship', autoship, args: ['test', sratom_src_root], suite: 'data') +if not meson.is_subproject() and get_option('strict') + # Check release metadata + autoship = find_program('autoship', required: false) + if autoship.found() + test('autoship', autoship, args: ['test', sratom_src_root], suite: 'data') + endif endif |