From: Fred Morcos Date: Tue, 15 Aug 2023 21:49:32 +0000 (+0200) Subject: Meson: Cleanup ext/yahttp X-Git-Tag: rec-5.1.0-alpha1~80^2~232 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2dd3b37a861aa602d3c33fdc3fc64f0236fae27e;p=thirdparty%2Fpdns.git Meson: Cleanup ext/yahttp --- diff --git a/ext/yahttp/yahttp/meson.build b/ext/yahttp/yahttp/meson.build index 8833a641a1..2704d4798c 100644 --- a/ext/yahttp/yahttp/meson.build +++ b/ext/yahttp/yahttp/meson.build @@ -1,19 +1,17 @@ -module_sources = [ - 'cookie.hpp', - 'exception.hpp', - 'reqresp.cpp', - 'reqresp.hpp', - 'router.cpp', - 'router.hpp', - 'url.hpp', - 'utility.hpp', - 'yahttp-config.h', - 'yahttp.hpp', -] - lib_yahttp = static_library( 'yahttp', - module_sources, + 'reqresp.cpp', + 'router.cpp', + extra_files: [ + 'cookie.hpp', + 'exception.hpp', + 'reqresp.hpp', + 'router.hpp', + 'url.hpp', + 'utility.hpp', + 'yahttp-config.h', + 'yahttp.hpp', + ], cpp_args: '-Wno-overloaded-virtual', dependencies: [dep_pdns], )