summaryrefslogtreecommitdiffstats
path: root/contrib/pgrowlocks/meson.build
blob: 48bce002e8c54b1ced251352061ccada76f38a6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright (c) 2022-2023, PostgreSQL Global Development Group

pgrowlocks_sources = files(
  'pgrowlocks.c',
)

if host_system == 'windows'
  pgrowlocks_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
    '--NAME', 'pgrowlocks',
    '--FILEDESC', 'pgrowlocks - display row locking information',])
endif

pgrowlocks = shared_module('pgrowlocks',
  pgrowlocks_sources,
  kwargs: contrib_mod_args,
)
contrib_targets += pgrowlocks

install_data(
  'pgrowlocks--1.0--1.1.sql',
  'pgrowlocks--1.1--1.2.sql',
  'pgrowlocks--1.2.sql',
  'pgrowlocks.control',
  kwargs: contrib_data_args,
)

tests += {
  'name': 'pgrowlocks',
  'sd': meson.current_source_dir(),
  'bd': meson.current_build_dir(),
  'isolation': {
    'specs': [
      'pgrowlocks',
    ],
    'regress_args': ['--load-extension=pgrowlocks'],
  },
}