mirror of
https://github.com/monero-project/monero.git
synced 2024-11-06 00:17:37 +00:00
5f4bd92e06
Following 13c0b8c
, the unwind package is being attempted to be built on
Windows and Mac when it should only be built on Linux.
26 lines
612 B
Makefile
26 lines
612 B
Makefile
packages:=boost openssl zeromq cppzmq expat ldns libiconv hidapi protobuf libusb
|
|
native_packages := native_ccache native_protobuf
|
|
|
|
darwin_native_packages = native_biplist native_ds_store native_mac_alias
|
|
darwin_packages = sodium-darwin ncurses readline
|
|
|
|
linux_packages = eudev ncurses readline sodium
|
|
qt_packages = qt
|
|
|
|
ifeq ($(build_tests),ON)
|
|
packages += gtest
|
|
endif
|
|
|
|
ifneq ($(host_arch),riscv64)
|
|
linux_packages += unwind
|
|
endif
|
|
|
|
ifeq ($(host_os),mingw32)
|
|
packages += icu4c
|
|
packages += sodium
|
|
endif
|
|
|
|
ifneq ($(build_os),darwin)
|
|
darwin_native_packages += native_cctools native_cdrkit native_libdmg-hfsplus
|
|
endif
|
|
|