diff options
Diffstat (limited to 'vcpkg/ports/libusb/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/libusb/vcpkg.json | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/vcpkg/ports/libusb/vcpkg.json b/vcpkg/ports/libusb/vcpkg.json new file mode 100644 index 0000000..6af7e25 --- /dev/null +++ b/vcpkg/ports/libusb/vcpkg.json @@ -0,0 +1,33 @@ +{ + "name": "libusb", + "version": "1.0.29", + "port-version": 1, + "description": "a cross-platform library to access USB devices", + "homepage": "https://github.com/libusb/libusb", + "license": "LGPL-2.1-or-later", + "supports": "!uwp", + "dependencies": [ + { + "name": "vcpkg-make", + "host": true, + "platform": "!windows | mingw" + }, + { + "name": "vcpkg-msbuild", + "host": true, + "platform": "windows & !mingw" + } + ], + "default-features": [ + { + "name": "udev", + "platform": "linux" + } + ], + "features": { + "udev": { + "description": "Enable udev", + "supports": "linux" + } + } +} |