We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04411cb commit 8c7ad6fCopy full SHA for 8c7ad6f
src/backend/meson.build
@@ -5,6 +5,7 @@ backend_sources = []
5
backend_link_with = [pgport_srv, common_srv]
6
7
generated_backend_sources = []
8
+post_export_backend_sources = []
9
10
subdir('access')
11
subdir('archive')
@@ -133,8 +134,15 @@ if dtrace.found() and host_system != 'darwin'
133
134
)
135
endif
136
137
+if host_system == 'windows'
138
+ post_export_backend_sources += rc_bin_gen.process(win32ver_rc, extra_args: [
139
+ '--NAME', 'postgres',
140
+ '--FILEDESC', 'PostgreSQL Server',])
141
+endif
142
+
143
postgres = executable('postgres',
144
backend_input,
145
+ sources: post_export_backend_sources,
146
objects: backend_objs,
147
link_args: backend_link_args,
148
link_with: backend_link_with,
0 commit comments