diff options
author | Noah Misch <noah@leadboat.com> | 2022-07-03 13:07:17 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2022-07-03 13:07:23 -0700 |
commit | 8b042df51eac7255291272f6a3cc48b4f3244016 (patch) | |
tree | a2c480473b76c60e9ef4d27285c8311d842351a3 | |
parent | 207fc033bd9f7d7f6f8a5609cf2c8caab5ce57f5 (diff) | |
download | postgresql-8b042df51eac7255291272f6a3cc48b4f3244016.tar.gz postgresql-8b042df51eac7255291272f6a3cc48b4f3244016.zip |
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/20220501080706.GA1542365@rfd.leadboat.com
-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 1f75b73b8c1..75ac08f943d 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 |