diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-04-16 16:48:18 -0400 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-04-16 16:48:18 -0400 |
| commit | 32d9c8f661fa60b99db02a7f31aa696454913961 (patch) | |
| tree | 7cdc49b1defa908b154f21a1b0f9b2382c777db9 | |
| parent | 221a49a823c4215d510f3037e3360e2b8c4f8422 (diff) | |
| parent | 34fdfcb458757d61b7c772f0649da083b9f05167 (diff) | |
| download | monzero-gui-32d9c8f661fa60b99db02a7f31aa696454913961.tar.gz monzero-gui-32d9c8f661fa60b99db02a7f31aa696454913961.tar.xz monzero-gui-32d9c8f661fa60b99db02a7f31aa696454913961.zip | |
Merge pull request #2064
34fdfcb Use pkg-config to find libusb and protobuf (Trezor dependencies) (prusnak)
| -rw-r--r-- | monero-wallet-gui.pro | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/monero-wallet-gui.pro b/monero-wallet-gui.pro index 5a4cc37d..b614279f 100644 --- a/monero-wallet-gui.pro +++ b/monero-wallet-gui.pro @@ -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 } |
