Add missing word in comment
[pgsql.git] / contrib / auto_explain / meson.build
blobaf1a3b8e3250ec4d2fb11eca648d524b910a1146
1 # Copyright (c) 2022-2024, PostgreSQL Global Development Group
3 auto_explain_sources = files(
4   'auto_explain.c',
7 if host_system == 'windows'
8   auto_explain_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
9     '--NAME', 'auto_explain',
10     '--FILEDESC', 'auto_explain - logging facility for execution plans',])
11 endif
13 auto_explain = shared_module('auto_explain',
14   auto_explain_sources,
15   kwargs: contrib_mod_args,
17 contrib_targets += auto_explain
19 tests += {
20   'name': 'auto_explain',
21   'sd': meson.current_source_dir(),
22   'bd': meson.current_build_dir(),
23   'tap': {
24     'tests': [
25       't/001_auto_explain.pl',
26     ],
27   },