mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
6ae64262a8
c8becb82805ed1483e009eba682f19fe9e8b8c9c depends: add ability to skip building qrencode (fanquake) Pull request description: Similar to other depends packages, add the ability to skip building `qrencode` by passing `NO_QR=1`. Same as #16089. ACKs for top commit: promag: ACK c8becb82805ed1483e009eba682f19fe9e8b8c9c. hebasto: ACK c8becb82805ed1483e009eba682f19fe9e8b8c9c, I have reviewed the code and it looks OK, I agree it can be merged. Tree-SHA512: 86c7a87a31b1b2e65be2b79f533ce49f8b0074cf31331411cb3d32bb542d0b99e69605482ad75e4d1be5f2c8c613f17ba9ff17195a6b48f45365f5eb35df8bf9
30 lines
664 B
Makefile
30 lines
664 B
Makefile
packages:=boost libevent gmp bls-dash backtrace cmake immer
|
|
|
|
qt_linux_packages:=qt expat dbus libxcb xcb_proto libXau xproto freetype fontconfig libxkbcommon
|
|
|
|
qrencode_packages = qrencode
|
|
|
|
qt_android_packages=qt
|
|
qt_darwin_packages=qt
|
|
qt_mingw32_packages=qt
|
|
|
|
wallet_packages=bdb
|
|
|
|
zmq_packages=zeromq
|
|
|
|
upnp_packages=miniupnpc
|
|
natpmp_packages=libnatpmp
|
|
|
|
darwin_native_packages = native_ds_store native_mac_alias
|
|
|
|
$(host_arch)_$(host_os)_native_packages += native_b2
|
|
|
|
ifneq ($(build_os),darwin)
|
|
darwin_native_packages += native_cctools native_libtapi native_libdmg-hfsplus
|
|
|
|
ifeq ($(strip $(FORCE_USE_SYSTEM_CLANG)),)
|
|
darwin_native_packages+= native_clang
|
|
endif
|
|
|
|
endif
|