diff options
| author | 2025-08-05 10:11:59 -0400 | |
|---|---|---|
| committer | 2025-08-05 10:11:59 -0400 | |
| commit | 480cfb2bd63e71ce90b5efbb81c525824db2336b (patch) | |
| tree | 4bbb6cca4cfa968fdfe03e97ee143b2693c46c55 | |
| parent | 0470ca3416388e7e58b64f63bfe505d454f150b9 (diff) | |
| download | libalabaster-480cfb2bd63e71ce90b5efbb81c525824db2336b.tar.gz libalabaster-480cfb2bd63e71ce90b5efbb81c525824db2336b.tar.bz2 libalabaster-480cfb2bd63e71ce90b5efbb81c525824db2336b.zip | |
build: Fix feature=auto usage
Signed-off-by: Andrew Opalach <andrew@akon.city>
| -rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index a8b9d41..2c20b45 100644 --- a/meson.build +++ b/meson.build @@ -68,7 +68,7 @@ alabaster = declare_dependency(include_directories: alabaster_inc, dependencies: alabaster_deps, sources: alabaster_src, compile_args: alabaster_args) -if get_option('tests').auto() and not meson.is_subproject() +if get_option('tests').allowed() and not meson.is_subproject() tests_src = [ 'tests/main.c', 'tests/lib.c', |