From: Fred Morcos Date: Tue, 8 Aug 2023 14:40:41 +0000 (+0200) Subject: Meson: YaHTTP X-Git-Tag: rec-5.1.0-alpha1~80^2~274 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecf75b6b91efb3c0adfbee90800417560a31dc42;p=thirdparty%2Fpdns.git Meson: YaHTTP --- diff --git a/ext/yahttp/meson.build b/ext/yahttp/meson.build new file mode 100644 index 0000000000..49a402524e --- /dev/null +++ b/ext/yahttp/meson.build @@ -0,0 +1,3 @@ +module_dist = ['LICENSE', 'README.md'] + +subdir('yahttp') diff --git a/ext/yahttp/yahttp/meson.build b/ext/yahttp/yahttp/meson.build new file mode 100644 index 0000000000..26ee631a1e --- /dev/null +++ b/ext/yahttp/yahttp/meson.build @@ -0,0 +1,18 @@ +module_sources = [ + 'cookie.hpp', + 'exception.hpp', + 'reqresp.cpp', + 'reqresp.hpp', + 'router.cpp', + 'router.hpp', + 'url.hpp', + 'utility.hpp', + 'yahttp-config.h', + 'yahttp.hpp', +] + +dep_yahttp = declare_dependency( + compile_args: '-Wno-overloaded-virtual', + sources: module_sources, + include_directories: include_directories('..'), +)