summaryrefslogtreecommitdiffstats
path: root/src/backend/replication/pgoutput/meson.build
blob: 243c92d04a9f958e5d8a30b489034dfeb2c78e5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright (c) 2022-2023, PostgreSQL Global Development Group

pgoutput_sources = files(
  'pgoutput.c',
)

if host_system == 'windows'
  pgoutput_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
    '--NAME', 'pgoutput',
    '--FILEDESC', 'pgoutput - standard logical replication output plugin',])
endif

pgoutput = shared_module('pgoutput',
  pgoutput_sources,
  kwargs: pg_mod_args,
)

backend_targets += pgoutput