1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-04 20:11:56 +03:00
Files
postgres/src/backend/nodes/meson.build
Bruce Momjian 29275b1d17 Update copyright for 2024
Reported-by: Michael Paquier

Discussion: https://postgr.es/m/ZZKTDPxBBMt3C0J9@paquier.xyz

Backpatch-through: 12
2024-01-03 20:49:05 -05:00

33 lines
736 B
Meson

# Copyright (c) 2022-2024, PostgreSQL Global Development Group
backend_sources += files(
'bitmapset.c',
'extensible.c',
'list.c',
'makefuncs.c',
'multibitmapset.c',
'nodeFuncs.c',
'params.c',
'print.c',
'read.c',
'tidbitmap.c',
'value.c',
)
# these include .c files generated in ../../include/nodes, seems nicer to not
# add that as an include path for the whole backend
nodefunc_sources = files(
'copyfuncs.c',
'equalfuncs.c',
'queryjumblefuncs.c',
'outfuncs.c',
'readfuncs.c',
)
nodefuncs = static_library('nodefuncs',
nodefunc_sources,
dependencies: [backend_code],
include_directories: include_directories('../../include/nodes'),
kwargs: internal_lib_args,
)
backend_link_with += nodefuncs