diff options
author | Noah Misch | 2022-07-03 20:07:17 +0000 |
---|---|---|
committer | Noah Misch | 2022-07-03 20:07:17 +0000 |
commit | b6a5158f98fd5158f66943d721061418f183b370 (patch) | |
tree | 4a3a85f2e78ee7863648044b68bd3be8c1e73967 | |
parent | 22a67fdd5d2756860e0e0813e4a1ae11b69e21c7 (diff) |
Add Windows file version information to libpq/test programs.
Back-patch to v15, the first version to install these programs.
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | src/interfaces/libpq/test/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/interfaces/libpq/test/Makefile b/src/interfaces/libpq/test/Makefile index 1f75b73b8c..75ac08f943 100644 --- a/src/interfaces/libpq/test/Makefile +++ b/src/interfaces/libpq/test/Makefile @@ -1,5 +1,8 @@ # src/interfaces/libpq/test/Makefile +PGFILEDESC = "libpq test program" +PGAPPICON = win32 + subdir = src/interfaces/libpq/test top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global @@ -15,5 +18,7 @@ PROGS = libpq_testclient libpq_uri_regress all: $(PROGS) +$(PROGS): $(WIN32RES) + clean distclean maintainer-clean: rm -f $(PROGS) *.o |