meson: don't build with -Werror by default

Fixes #70. For development, initialise meson with the `--werror` option:

```
meson build --werror
```

Alternatively, for an existing build, run

```
cd build
meson configure -Dwerror=true
```
This commit is contained in:
Jente Hidskes 2020-01-31 22:55:16 +01:00
parent 15eeb7784e
commit 33cd4c2af9
No known key found for this signature in database
GPG key ID: 04BE5A29F32D91EA

View file

@ -4,7 +4,6 @@ project('cage', 'c',
default_options: [
'c_std=c11',
'warning_level=3',
'werror=true',
],
)