Link test executable with dbghelp under cygwin.

This commit is contained in:
Bartosz Taudul 2018-06-19 19:51:29 +02:00
parent 4be2543b2f
commit 46cc92bd01

View File

@ -12,6 +12,10 @@ SRC := \
OBJ := $(SRC:%.cpp=%.o)
ifeq ($(shell uname -o),Cygwin)
LIBS += -ldbghelp
endif
all: $(IMAGE)
%.o: %.cpp