Remove _PG_fini Mikhail Litsarev
[online_analyze.git] / meson.build
1 # Copyright (c) 2023, Postgres Professional
2
3 online_analyze_sources = files(
4   'online_analyze.c'
5 )
6
7 if host_system == 'windows'
8   online_analyze_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
9     '--NAME', 'online_analyze',
10     '--FILEDESC', 'online_analyze - provides a set of features that immediately update statistics after INSERT, UPDATE, DELETE, or SELECT INTO operations for the affected tables.',])
11 endif
12
13 online_analyze = shared_module('online_analyze',
14   online_analyze_sources,
15   kwargs: contrib_mod_args,
16 )
17 contrib_targets += online_analyze
18
19 tests += {
20   'name': 'online_analyze',
21   'sd': meson.current_source_dir(),
22   'bd': meson.current_build_dir(),
23   'regress': {
24     'sql': [
25       'online_analyze',
26     ],
27   },
28 }