aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2024-06-16 12:29:30 -0700
committerNoah Misch <noah@leadboat.com>2024-06-16 12:29:30 -0700
commit645bda2a7155fff57cc3da2ab923202187c72957 (patch)
tree346d88682e644598d0ccc915e7318ee3fe0fc198 /src
parent8866ed9560576de9dec628d5bfdb1571ec8d8ef0 (diff)
downloadpostgresql-645bda2a7155fff57cc3da2ab923202187c72957.tar.gz
postgresql-645bda2a7155fff57cc3da2ab923202187c72957.zip
Add Windows file version information to test_json_parser programs.
Diffstat (limited to 'src')
-rw-r--r--src/test/modules/test_json_parser/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/modules/test_json_parser/Makefile b/src/test/modules/test_json_parser/Makefile
index 6f438629d8c..2dc7175b7c8 100644
--- a/src/test/modules/test_json_parser/Makefile
+++ b/src/test/modules/test_json_parser/Makefile
@@ -4,7 +4,7 @@ PGAPPICON = win32
TAP_TESTS = 1
-OBJS = test_json_parser_incremental.o test_json_parser_perf.o
+OBJS = test_json_parser_incremental.o test_json_parser_perf.o $(WIN32RES)
EXTRA_CLEAN = test_json_parser_incremental$(X) test_json_parser_perf$(X)
@@ -23,10 +23,10 @@ all: test_json_parser_incremental$(X) test_json_parser_perf$(X)
%.o: $(top_srcdir)/$(subdir)/%.c
-test_json_parser_incremental$(X): test_json_parser_incremental.o
+test_json_parser_incremental$(X): test_json_parser_incremental.o $(WIN32RES)
$(CC) $(CFLAGS) $^ $(PG_LIBS_INTERNAL) $(LDFLAGS) $(LDFLAGS_EX) $(PG_LIBS) $(LIBS) -o $@
-test_json_parser_perf$(X): test_json_parser_perf.o
+test_json_parser_perf$(X): test_json_parser_perf.o $(WIN32RES)
$(CC) $(CFLAGS) $^ $(PG_LIBS_INTERNAL) $(LDFLAGS) $(LDFLAGS_EX) $(PG_LIBS) $(LIBS) -o $@
speed-check: test_json_parser_perf$(X)