mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-20 07:09:15 +01:00
This causes IPC binaries (bitcoin-node, bitcoin-gui) to be included in releases. The effect on CI is that this causes more depends builds to build IPC binaries, but still the only build running functional tests with them is the i686_multiprocess one. Except for Windows.
27 lines
685 B
Makefile
27 lines
685 B
Makefile
packages:=
|
|
|
|
boost_packages = boost
|
|
|
|
libevent_packages = libevent
|
|
|
|
qrencode_linux_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_cursor libxcb_util_render libxcb_util_keysyms libxcb_util_image libxcb_util_wm
|
|
qt_freebsd_packages:=$(qt_linux_packages)
|
|
qt_darwin_packages=qt
|
|
qt_mingw32_packages=qt
|
|
ifneq ($(host),$(build))
|
|
qt_native_packages := native_qt
|
|
endif
|
|
|
|
sqlite_packages=sqlite
|
|
|
|
zmq_packages=zeromq
|
|
|
|
ipc_packages = capnp
|
|
multiprocess_native_packages = native_libmultiprocess native_capnp
|
|
|
|
usdt_linux_packages=systemtap
|