Merge pull request #2064

34fdfcb Use pkg-config to find libusb and protobuf (Trezor dependencies) (prusnak)
This commit is contained in:
luigi1111 2019-04-16 16:48:18 -04:00
commit 32d9c8f661
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -10,6 +10,12 @@ QT += qml quick widgets
WALLET_ROOT=$$PWD/monero
CONFIG += c++11 link_pkgconfig
packagesExist(libusb-1.0) {
PKGCONFIG += libusb-1.0
}
packagesExist(protobuf) {
PKGCONFIG += protobuf
}
packagesExist(hidapi-libusb) {
PKGCONFIG += hidapi-libusb
}