From a42c2a846d854d5b1ad42e27ee7091c72d2b5080 Mon Sep 17 00:00:00 2001 From: Jannis Hoffmann Date: Wed, 3 Jul 2024 23:09:39 +0200 Subject: convert to the meson build system --- meson.build | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 meson.build (limited to 'meson.build') diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..3354e80 --- /dev/null +++ b/meson.build @@ -0,0 +1,24 @@ +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']) +else + ucspissl_dep = disabler() +endif + +crypt_dep = dependency('libcrypt') + +idn2_dep = dependency('libidn2', required : get_option('idn2')) + +ssl_dep = dependency('libssl', version : '>=1.1') +crypto_dep = dependency('libcrypto') + +subdir('src') +subdir('man') -- cgit v1.2.3