Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
blob: 5c2d296fef918fca69d5bcfe5b636c52239c535e (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
# Copyright (c) 2022-2024, PostgreSQL Global Development Group

if host_system != 'windows'
  subdir_done()
endif

pgevent_sources = files(
  'pgevent.c',
)

pgevent_sources += rc_bin_gen.process(win32ver_rc, extra_args: [
  '--NAME', 'pgevent',
  '--FILEDESC', 'Eventlog message formatter',])

pgevent_sources += windows.compile_resources('pgmsgevent.rc')

# XXX: We may want to revisit the addition of this flag and improve the
# way symbols are exported.
pgevent_link_args = []
if cc.get_id() == 'msvc'
  pgevent_link_args += '/ignore:4104'
endif

pgevent = shared_library('pgevent',
  pgevent_sources,
  dependencies: [frontend_code],
  link_args: pgevent_link_args,
  vs_module_defs: 'pgevent.def',
  kwargs: default_lib_args + {
    'name_prefix': '',
  },
)
bin_targets += pgevent