1 # Copyright (c) 2022-2025, PostgreSQL Global Development Group
3 postgres_fdw_sources = files(
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',])
17 postgres_fdw = shared_module('postgres_fdw',
19 kwargs: contrib_mod_args + {
20 'dependencies': contrib_mod_args['dependencies'] + [libpq],
23 contrib_targets += postgres_fdw
26 'postgres_fdw.control',
27 'postgres_fdw--1.0.sql',
28 'postgres_fdw--1.0--1.1.sql',
29 'postgres_fdw--1.1--1.2.sql',
30 kwargs: contrib_data_args,
34 'name': 'postgres_fdw',
35 'sd': meson.current_source_dir(),
36 'bd': meson.current_build_dir(),
42 'regress_args': ['--dlpath', meson.build_root() / 'src/test/regress'],
46 't/001_auth_scram.pl',