Skip to content

Commit 645bda2

Browse files
committed
Add Windows file version information to test_json_parser programs.
1 parent 8866ed9 commit 645bda2

File tree

1 file changed

+3
-3
lines changed
  • src/test/modules/test_json_parser

1 file changed

+3
-3
lines changed

src/test/modules/test_json_parser/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PGAPPICON = win32
44

55
TAP_TESTS = 1
66

7-
OBJS = test_json_parser_incremental.o test_json_parser_perf.o
7+
OBJS = test_json_parser_incremental.o test_json_parser_perf.o $(WIN32RES)
88

99
EXTRA_CLEAN = test_json_parser_incremental$(X) test_json_parser_perf$(X)
1010

@@ -23,10 +23,10 @@ all: test_json_parser_incremental$(X) test_json_parser_perf$(X)
2323

2424
%.o: $(top_srcdir)/$(subdir)/%.c
2525

26-
test_json_parser_incremental$(X): test_json_parser_incremental.o
26+
test_json_parser_incremental$(X): test_json_parser_incremental.o $(WIN32RES)
2727
$(CC) $(CFLAGS) $^ $(PG_LIBS_INTERNAL) $(LDFLAGS) $(LDFLAGS_EX) $(PG_LIBS) $(LIBS) -o $@
2828

29-
test_json_parser_perf$(X): test_json_parser_perf.o
29+
test_json_parser_perf$(X): test_json_parser_perf.o $(WIN32RES)
3030
$(CC) $(CFLAGS) $^ $(PG_LIBS_INTERNAL) $(LDFLAGS) $(LDFLAGS_EX) $(PG_LIBS) $(LIBS) -o $@
3131

3232
speed-check: test_json_parser_perf$(X)

0 commit comments

Comments
 (0)