summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLibravatar Jeff Hostetler <jeffhost@microsoft.com>2021-03-15 21:08:23 +0000
committerLibravatar Junio C Hamano <gitster@pobox.com>2021-03-15 14:32:50 -0700
commit59c7b88198af8af29deffb2eee7b7b2329e9197e (patch)
treea7730b01f2e80b4cdadf679c7901667164fd39f1 /Makefile
parentsimple-ipc: design documentation for new IPC mechanism (diff)
downloadtgif-59c7b88198af8af29deffb2eee7b7b2329e9197e.tar.xz
simple-ipc: add win32 implementation
Create Windows implementation of "simple-ipc" using named pipes. Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4128b457e1..40d5cab78d 100644
--- a/Makefile
+++ b/Makefile
@@ -1679,6 +1679,11 @@ else
LIB_OBJS += unix-socket.o
endif
+ifdef USE_WIN32_IPC
+ LIB_OBJS += compat/simple-ipc/ipc-shared.o
+ LIB_OBJS += compat/simple-ipc/ipc-win32.o
+endif
+
ifdef NO_ICONV
BASIC_CFLAGS += -DNO_ICONV
endif