From: Fred Morcos Date: Wed, 12 Jul 2023 21:06:13 +0000 (+0200) Subject: Meson: cURL X-Git-Tag: rec-5.1.0-alpha1~80^2~330 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e246e31573d3fbcd1862bc549b95eacb21e06a6;p=thirdparty%2Fpdns.git Meson: cURL --- diff --git a/meson/prog-curl/meson.build b/meson/prog-curl/meson.build new file mode 100644 index 0000000000..f836c63fed --- /dev/null +++ b/meson/prog-curl/meson.build @@ -0,0 +1,6 @@ +# Find cURL +# Outputs: curl + +curl = find_program('curl', required: true) + +summary('cURL', curl.found(), bool_yn: true, section: 'Programs')