diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/meson.build b/meson.build index 8e5b7de..19aabcd 100644 --- a/meson.build +++ b/meson.build @@ -1,15 +1,21 @@ -project('sqmail', 'c', 'cpp', - meson_version : '>=1.3', - version : '4.2.29a', - default_options : ['c_std=gnu99', 'cpp_std=c++11']) +project( + 'sqmail', + 'c', + 'cpp', + meson_version : '>=1.3', + version : '4.2.29a', + default_options : ['c_std=gnu99', 'cpp_std=c++11'], +) qlibs_dep = dependency('qlibs', fallback : ['fehQlibs', 'qlibs_dep']) dnsresolv_dep = dependency('dnsresolv', fallback : ['fehQlibs', 'qlibs_dnsresolv_dep']) if get_option('build-clients') or get_option('build-pam') - ucspissl_dep = dependency('ucspissl', - fallback : ['ucspi-ssl', 'ucspissl_dep'], - default_options : ['lib-only=true']) + ucspissl_dep = dependency( + 'ucspissl', + fallback : ['ucspi-ssl', 'ucspissl_dep'], + default_options : ['lib-only=true'], + ) else ucspissl_dep = disabler() endif |