diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meson.build b/meson.build index e72d1bb..0ac70be 100644 --- a/meson.build +++ b/meson.build @@ -73,9 +73,11 @@ if get_option('strict') '/wd4061', # enumerator in switch is not explicitly handled '/wd4365', # signed/unsigned mismatch '/wd4514', # unreferenced inline function has been removed + '/wd4706', # assignment within conditional expression '/wd4774', # format string is not a string literal '/wd4820', # padding added after construct '/wd4996', # POSIX name for this item is deprecated + '/wd5045', # compiler will insert Spectre mitigation ] endif @@ -154,6 +156,8 @@ else prog_args = ['-DLILV_STATIC'] endif +library_args += ['-DZIX_STATIC'] + # Build shared and/or static library/libraries liblilv = build_target( versioned_name, |