I am using Microsoft Visual Studio 2013, how can I add the external library libusb
to my project?
Asked
Active
Viewed 3,396 times
0
1 Answers
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