psql: Add missing punctuation in help output
[pgsql.git] / contrib / postgres_fdw / meson.build
blob2b86d8a6eebc10e0bb28cbe517321da7ec0094dd
1 # Copyright (c) 2022-2024, PostgreSQL Global Development Group
3 postgres_fdw_sources = files(
4   'connection.c',
5   'deparse.c',
6   'option.c',
7   'postgres_fdw.c',
8   'shippable.c',
11 if host_system == 'windows'
12   postgres_fdw_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
13     '--NAME', 'postgres_fdw',
14     '--FILEDESC', 'postgres_fdw - foreign data wrapper for PostgreSQL',])
15 endif
17 postgres_fdw = shared_module('postgres_fdw',
18   postgres_fdw_sources,
19   kwargs: contrib_mod_args + {
20     'dependencies': contrib_mod_args['dependencies'] + [libpq],
21   },
23 contrib_targets += postgres_fdw
25 install_data(
26   'postgres_fdw.control',
27   'postgres_fdw--1.0.sql',
28   'postgres_fdw--1.0--1.1.sql',
29   kwargs: contrib_data_args,
32 tests += {
33   'name': 'postgres_fdw',
34   'sd': meson.current_source_dir(),
35   'bd': meson.current_build_dir(),
36   'regress': {
37     'sql': [
38       'postgres_fdw',
39     ],
40     'regress_args': ['--dlpath', meson.build_root() / 'src/test/regress'],
41   },