mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
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:
parent
9701a56a43
commit
d9ef073dfc
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user