diff options
author | Matt Corallo <matt@bluematt.me> | 2011-12-23 20:23:12 -0800 |
---|---|---|
committer | Matt Corallo <matt@bluematt.me> | 2011-12-25 02:15:16 -0800 |
commit | 0b5d6f1e26088df0aaf16b63d1268e40f5fd13b3 (patch) | |
tree | b34abdc7a67d004795f2a4909cb3abaad4df1a72 /bitcoin-qt.pro | |
parent | 119473974574d2d380a95c97d059598b70fb73de (diff) |
Add QR Code support to Win32 Gitian build.
Diffstat (limited to 'bitcoin-qt.pro')
-rw-r--r-- | bitcoin-qt.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index b690faecd7..2352230049 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -283,8 +283,8 @@ macx:ICON = src/qt/res/icons/bitcoin.icns macx:TARGET = "Bitcoin-Qt" # Set libraries and includes at end, to use platform-defined defaults if not overridden -INCLUDEPATH += $$BOOST_INCLUDE_PATH $$BDB_INCLUDE_PATH $$OPENSSL_INCLUDE_PATH -LIBS += $$join(BOOST_LIB_PATH,,-L,) $$join(BDB_LIB_PATH,,-L,) $$join(OPENSSL_LIB_PATH,,-L,) +INCLUDEPATH += $$BOOST_INCLUDE_PATH $$BDB_INCLUDE_PATH $$OPENSSL_INCLUDE_PATH $$QRENCODE_INCLUDE_PATH +LIBS += $$join(BOOST_LIB_PATH,,-L,) $$join(BDB_LIB_PATH,,-L,) $$join(OPENSSL_LIB_PATH,,-L,) $$join(QRENCODE_LIB_PATH,,-L,) LIBS += -lssl -lcrypto -ldb_cxx$$BDB_LIB_SUFFIX # -lgdi32 has to happen after -lcrypto (see #681) windows:LIBS += -lgdi32 |