diff options
| author | 2024-01-01 12:07:09 -0500 | |
|---|---|---|
| committer | 2024-01-01 12:07:09 -0500 | |
| commit | fb386097cd56ca2ee62aa815f60101470d7a5d5d (patch) | |
| tree | 378c8b4ae296f47850a33f1d715529d0d0a87543 | |
| parent | 03e6780bdf46b5080efbe8d51106cccc43d5a292 (diff) | |
| download | libalabaster-fb386097cd56ca2ee62aa815f60101470d7a5d5d.tar.gz libalabaster-fb386097cd56ca2ee62aa815f60101470d7a5d5d.tar.bz2 libalabaster-fb386097cd56ca2ee62aa815f60101470d7a5d5d.zip | |
Reset version
Signed-off-by: Andrew Opalach <andrew@akon.city>
| -rw-r--r-- | meson.build | 4 | ||||
| -rw-r--r-- | meson_options.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build index a230d4d..bb73e4d 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('libalabaster', 'c', version: '0.1', +project('libalabaster', 'c', version: '0.01', default_options: ['warning_level=2', 'c_std=c99']) compiler = meson.get_compiler('c') @@ -45,7 +45,7 @@ alabaster = declare_dependency(include_directories: alabaster_inc, dependencies: alabaster_deps, sources: alabaster_src, compile_args: alabaster_args) -if get_option('build-tests') and not meson.is_subproject() +if get_option('tests') and not meson.is_subproject() tests_src = [ 'tests/main.c', 'tests/array.c', diff --git a/meson_options.txt b/meson_options.txt index 891bc02..ea1045c 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1 +1 @@ -option('build-tests', type: 'boolean', value: true) +option('tests', type: 'boolean', value: true) |