nbtree: fix read page recheck typo.
[pgsql.git] / src / backend / utils / activity / meson.build
blobf73c22905c272a40aa671ed19808c16bbc5ac554
1 # Copyright (c) 2022-2024, PostgreSQL Global Development Group
3 backend_sources += files(
4   'backend_progress.c',
5   'backend_status.c',
6   'pgstat.c',
7   'pgstat_archiver.c',
8   'pgstat_bgwriter.c',
9   'pgstat_checkpointer.c',
10   'pgstat_database.c',
11   'pgstat_function.c',
12   'pgstat_io.c',
13   'pgstat_relation.c',
14   'pgstat_replslot.c',
15   'pgstat_shmem.c',
16   'pgstat_slru.c',
17   'pgstat_subscription.c',
18   'pgstat_wal.c',
19   'pgstat_xact.c',
22 # this includes a .c file with contents generated in ../../../include/activity,
23 # seems nicer to not add that as an include path for the whole backend.
24 waitevent_sources = files(
25   'wait_event.c',
26   'wait_event_funcs.c',
29 wait_event = static_library('wait_event_names',
30   waitevent_sources,
31   dependencies: [backend_code],
32   include_directories: include_directories('../../../include/utils'),
33   kwargs: internal_lib_args,
36 backend_link_with += wait_event