mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
56b6e41ea7
Add pcsc-lite to linux builds Fixup windows icu4c linking with depends, the static libraries have an 's' appended to them Compiling depends arm-linux-gnueabihf will allow you to compile armv6zk monero binaries
26 lines
534 B
Makefile
26 lines
534 B
Makefile
packages:=boost openssl libevent zeromq cppzmq zlib expat ldns unbound cppzmq readline libiconv
|
|
native_packages := native_ccache
|
|
|
|
wallet_packages=bdb
|
|
|
|
upnp_packages=miniupnpc
|
|
|
|
darwin_native_packages = native_biplist native_ds_store native_mac_alias
|
|
|
|
ifeq ($(host_os),linux)
|
|
packages += unwind
|
|
endif
|
|
ifeq ($(host_os),darwin11)
|
|
package += unwind
|
|
endif
|
|
ifeq ($(host_os),mingw32)
|
|
packages += icu4c
|
|
endif
|
|
|
|
ifneq ($(build_os),darwin)
|
|
darwin_native_packages += native_cctools native_cdrkit native_libdmg-hfsplus
|
|
packages += readline
|
|
endif
|
|
|
|
|