diff options
author | Matt Corallo <matt@bluematt.me> | 2012-02-15 14:42:51 -0500 |
---|---|---|
committer | Matt Corallo <matt@bluematt.me> | 2012-02-15 16:39:01 -0500 |
commit | b03cb15789d021a2dc8c32cbe5ed92ad16da0f40 (patch) | |
tree | 7b2d3db8b3af69b31f1b7e713729714159ba8a07 /bitcoin-qt.pro | |
parent | 32af6b16f190d44adbbc02595f832af2a21b9d2b (diff) |
Make bitcoin-qt static-link libqrcode and add it for debian pkgs.
Diffstat (limited to 'bitcoin-qt.pro')
-rw-r--r-- | bitcoin-qt.pro | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index e2097fd4b0..933f4a70da 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -19,14 +19,6 @@ OBJECTS_DIR = build MOC_DIR = build UI_DIR = build -# use: qmake "USE_QRCODE=1" -# libqrencode (http://fukuchi.org/works/qrencode/index.en.html) must be installed for support -contains(USE_QRCODE, 1) { - message(Building with QRCode support) - DEFINES += USE_QRCODE - LIBS += -lqrencode -} - # use: qmake "RELEASE=1" contains(RELEASE, 1) { # Mac: compile for maximum compatibility (10.5, 32-bit) @@ -38,6 +30,14 @@ contains(RELEASE, 1) { } } +# use: qmake "USE_QRCODE=1" +# libqrencode (http://fukuchi.org/works/qrencode/index.en.html) must be installed for support +contains(USE_QRCODE, 1) { + message(Building with QRCode support) + DEFINES += USE_QRCODE + LIBS += -lqrencode +} + # use: qmake "USE_UPNP=1" ( enabled by default; default) # or: qmake "USE_UPNP=0" (disabled by default) # or: qmake "USE_UPNP=-" (not supported) |