MAC环境下,QT上使用libusb

基本步骤

  1. git clone https://github.com/libusb/libusb.git
  2. ./configure
  3. ./make
  4. sudo ./make install
  5. 在qt工程文件(pro)中,添加下面两句
    LIBS += -L/usr/local/lib -lusb-1.0.0
    INCLUDEPATH += /usr/local/include
  6. 在代码中使用#include<libusb-1.0/libusb.h>