mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 19:33:28 +01:00
4ea7832ea7
It's just wasted overhead since the build VMs are always deleted and recreated fresh for each run.
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
packages:=boost openssl zeromq libiconv
|
|
|
|
# ccache is useless in gitian builds
|
|
ifneq ($(GITIAN),1)
|
|
native_packages := native_ccache
|
|
endif
|
|
|
|
hardware_packages := hidapi protobuf libusb
|
|
hardware_native_packages := native_protobuf
|
|
|
|
android_native_packages = android_ndk
|
|
android_packages = ncurses readline sodium
|
|
|
|
darwin_native_packages = native_biplist native_ds_store native_mac_alias $(hardware_native_packages)
|
|
darwin_packages = sodium ncurses readline $(hardware_packages)
|
|
|
|
# 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
|
|
|
|
ifneq ($(host_arch),riscv64)
|
|
linux_packages += unwind
|
|
endif
|
|
|
|
mingw32_packages = icu4c sodium $(hardware_packages)
|
|
mingw32_native_packages = $(hardware_native_packages)
|
|
|
|
ifneq ($(build_os),darwin)
|
|
darwin_native_packages += native_cctools native_cdrkit native_libdmg-hfsplus
|
|
endif
|
|
|