FIX: the HID-Flasher depends on libusb to be able to compile On OSX the 'include paths' is different when using homebrew.

This project compiles on Ubuntu with libusb-dev installed.     Lets see if it compiles on OSX....
This commit is contained in:
iceman1001 2017-01-20 19:25:42 +01:00
parent 1b75698cb7
commit 360a5b1b3c
2 changed files with 9 additions and 4 deletions

View file

@ -12,10 +12,15 @@ CXX=g++
VPATH = ../../common
OBJDIR = obj
LDLIBS = -L/opt/local/lib -L/usr/local/lib -lusb -lreadline -lpthread
LDFLAGS = $(COMMON_FLAGS)
CFLAGS = -std=gnu99 -I. -I../include -I../common -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O3
ifeq ($(platform),Darwin)
LDLIBS = -L/opt/local/lib -L/usr/local/lib -lusb-1.0 -lreadline -lpthread
CFLAGS = -std=gnu99 -I. -I../include -I../common -I/usr/local/include -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O3
else
LDLIBS = -L/opt/local/lib -L/usr/local/lib -lusb -lreadline -lpthread
CFLAGS = -std=gnu99 -I. -I../include -I../common -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O3
endif
LDFLAGS = $(COMMON_FLAGS)
CXXFLAGS =
QTLDLIBS =

View file

@ -13,7 +13,7 @@
#include <stdint.h>
#include <stdbool.h>
//#include <usb.h>
#include <usb.h>
#include "usb_cmd.h"
extern unsigned char return_on_error;