Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2018-06-19 20:51:29 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2018-06-19 20:51:29 +0300
commit46cc92bd01163fd7f944e3160a1d892d273e16a5 (patch)
tree96da2236f35225e7516489a738bdbceadde87431 /test
parent4be2543b2fb0aa20d0f2197dafa7eafef08499d1 (diff)
Link test executable with dbghelp under cygwin.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
index 14ee2202..6267b8d7 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -12,6 +12,10 @@ SRC := \
OBJ := $(SRC:%.cpp=%.o)
+ifeq ($(shell uname -o),Cygwin)
+LIBS += -ldbghelp
+endif
+
all: $(IMAGE)
%.o: %.cpp