mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
bf044ef9ec
Similar to how we specify the OS's we build Qt for, specify which OS's we will build qrencode for (a qt dependency). This commit alone doesn't change anything, but when we start supporting other OS's, i.e #23948, where we wont support qt (or at least initially), it'll skip building the qrencode package, which would be unused.
38 lines
988 B
Makefile
38 lines
988 B
Makefile
packages:=boost libevent
|
|
|
|
qrencode_linux_packages = qrencode
|
|
qrencode_android_packages = qrencode
|
|
qrencode_darwin_packages = qrencode
|
|
qrencode_mingw32_packages = qrencode
|
|
|
|
qt_linux_packages:=qt expat libxcb xcb_proto libXau xproto freetype fontconfig libxkbcommon libxcb_util libxcb_util_render libxcb_util_keysyms libxcb_util_image libxcb_util_wm
|
|
qt_android_packages=qt
|
|
qt_darwin_packages=qt
|
|
qt_mingw32_packages=qt
|
|
|
|
bdb_packages=bdb
|
|
sqlite_packages=sqlite
|
|
|
|
zmq_packages=zeromq
|
|
|
|
upnp_packages=miniupnpc
|
|
natpmp_packages=libnatpmp
|
|
|
|
multiprocess_packages = libmultiprocess capnp
|
|
multiprocess_native_packages = native_libmultiprocess native_capnp
|
|
|
|
usdt_linux_packages=systemtap
|
|
|
|
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
|