diff options
author | sje397 <sje397@gmail.com> | 2011-11-11 01:20:17 +1100 |
---|---|---|
committer | sje397 <sje397@gmail.com> | 2011-12-20 22:11:24 +1100 |
commit | 22123c85f3722abad896aebb564a89d88da92e81 (patch) | |
tree | 212d80a39a64c31bc7746127306cdb4eb9ce1614 /src/makefile.osx | |
parent | 3528650560a2c417da2303869c743da019defc6d (diff) |
Added QRCode generation functions via libqrencode. Switch on with USE_QRENCODE=1.
Amended build docs for Linux and OSX, and OSX makefile.
Added package 'qrencode' to gitian.yml
Diffstat (limited to 'src/makefile.osx')
-rw-r--r-- | src/makefile.osx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/makefile.osx b/src/makefile.osx index 4b0b521a33..2bb898049d 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -95,6 +95,10 @@ else endif endif +ifdef USE_QRCODE + DEFS += -DUSE_QRCODE=$(USE_QRCODE) + LIBS += -lqrencode +endif all: bitcoind |