0

I am using Microsoft Visual Studio 2013, how can I add the external library libusb to my project?

Cœur
  • 37,241
  • 25
  • 195
  • 267
prabhu
  • 11
  • 1
  • 4

1 Answers1

1

libusb will contain a LIB file, DLL file and header file. You will need to include the libusb header file in your source project. Then under your project settings you should go to the Linker section and add the LIB file as a linked object. Then, just ensure your DLL is accessible to your executable when running or debugging.

Preston
  • 2,543
  • 1
  • 17
  • 26