1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Windows: Also use -lshlwapi for jq(1)

This commit is contained in:
Nicolas Williams
2017-02-25 14:15:18 -06:00
parent c695f2cd9c
commit 9801de6979

View File

@ -109,6 +109,10 @@ jq_SOURCES = src/main.c src/version.h
jq_LDFLAGS = -static-libtool-libs
jq_LDADD = libjq.la -lm
if WIN32
jq_LDADD += -lshlwapi
endif
if ENABLE_ALL_STATIC
jq_LDFLAGS += -all-static
endif