Link minizip and crypto in C++ test if required

Setting USE_SYSTEM_MINIZIP and USE_OPENSSL_MD5 causes minizip and crypto
respectively to becomme dependencies of libxlsxwriter, hence then they
need to be linked in the C++ test, too.
This commit is contained in:
Sijmen J. Mulder 2021-11-20 01:41:33 +01:00 committed by John McNamara
parent 9701a56a43
commit d9ef073dfc

View File

@ -24,6 +24,14 @@ EXES = $(patsubst %.cpp,%,$(SRCS))
LIBXLSXWRITER = ../../src/libxlsxwriter.a
LIBS = $(LIBXLSXWRITER) -lz
ifdef USE_SYSTEM_MINIZIP
LIBS += -lminizip
endif
ifdef USE_OPENSSL_MD5
LIBS += -lcrypto
endif
all : $(LIBXLSXWRITER) $(EXES)
$(LIBXLSXWRITER):