monero/contrib/depends/packages/packages.mk

40 lines
983 B
Makefile
Raw Normal View History

2021-07-06 20:51:14 -04:00
packages:=boost openssl zeromq libiconv expat ldns unbound
2019-10-31 23:38:13 -04:00
# ccache is useless in gitian builds
ifneq ($(GITIAN),1)
2019-11-11 03:34:47 -05:00
native_packages := native_ccache
endif
2019-11-11 03:34:47 -05:00
hardware_packages := hidapi protobuf libusb
hardware_native_packages := native_protobuf
2019-10-31 23:38:13 -04:00
android_native_packages = android_ndk
android_packages = ncurses readline sodium
darwin_native_packages = $(hardware_native_packages)
darwin_packages = ncurses readline sodium $(hardware_packages)
2019-11-11 03:34:47 -05:00
# not really native...
freebsd_native_packages = freebsd_base
freebsd_packages = ncurses readline sodium
linux_packages = eudev ncurses readline sodium $(hardware_packages)
linux_native_packages = $(hardware_native_packages)
qt_packages = qt
ifeq ($(build_tests),ON)
packages += gtest
endif
2019-06-26 18:25:47 -04:00
ifneq ($(host_arch),riscv64)
linux_packages += unwind
2019-06-26 18:25:47 -04:00
endif
2019-11-11 03:34:47 -05:00
mingw32_packages = icu4c sodium $(hardware_packages)
mingw32_native_packages = $(hardware_native_packages)
ifneq ($(build_os),darwin)
darwin_native_packages += native_cctools
endif