mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
bd4f568117
c995c870aa4cc9b9ddf0a84ce15c544757a43a18 depends: add ability to skip building zeromq (fanquake) Pull request description: Similar to other depends packages, add the ability to skip building `zeromq` by passing `NO_ZMQ=1`. Fixes #15918. ACKs for commit c995c8: practicalswift: utACK c995c870aa4cc9b9ddf0a84ce15c544757a43a18 jonasschnelli: utACK c995c870aa4cc9b9ddf0a84ce15c544757a43a18 Tree-SHA512: 72269707916d5af0bc8ecdd89f61e49264dba29350f9508fe0a497e8ce8dae66f6a828cf0bf4d97b6f95356b505cb3e6c365e8476219dd56c4535c850df393c9
29 lines
670 B
Makefile
29 lines
670 B
Makefile
packages:=boost openssl libevent gmp bls-dash backtrace cmake immer
|
|
|
|
qt_native_packages = native_protobuf
|
|
qt_packages = qrencode protobuf zlib
|
|
|
|
qt_linux_packages:=qt expat dbus libxcb xcb_proto libXau xproto freetype fontconfig
|
|
|
|
qt_darwin_packages=qt
|
|
qt_mingw32_packages=qt
|
|
|
|
wallet_packages=bdb
|
|
|
|
zmq_packages=zeromq
|
|
|
|
upnp_packages=miniupnpc
|
|
|
|
darwin_native_packages = native_biplist 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
|