Fix hosted compile on MacOS. hidapi-libusb has a different name

This commit is contained in:
Uwe Bonnes 2021-06-01 16:54:39 +02:00 committed by UweBonnes
parent de83dbb7e2
commit 1b49823f64
1 changed files with 4 additions and 2 deletions

View File

@ -12,6 +12,7 @@ CFLAGS += -DHOSTED_BMP_ONLY=$(HOSTED_BMP_ONLY) -Wno-format-truncation
ifneq (, $(findstring linux, $(SYS)))
SRC += serial_unix.c
HIDAPILIB = hidapi-libusb
ifeq ($(ASAN), 1)
CFLAGS += -fsanitize=address
LDFLAGS += -lasan
@ -36,6 +37,7 @@ SRC += serial_unix.c
LDFLAGS += -lhidapi
LDFLAGS += -framework CoreFoundation
CFLAGS += -Ihidapi/hidapi
HIDAPILIB = hidapi
endif
ifneq ($(HOSTED_BMP_ONLY), 1)
@ -51,8 +53,8 @@ ifneq ($(HOSTED_BMP_ONLY), 1)
ifneq (, $(findstring mingw, $(SYS)))
SRC += hid.c
else
CFLAGS += $(shell pkg-config --cflags hidapi-libusb)
LDFLAGS += $(shell pkg-config --libs hidapi-libusb)
CFLAGS += $(shell pkg-config --cflags $(HIDAPILIB))
LDFLAGS += $(shell pkg-config --libs $(HIDAPILIB))
endif
endif