mirror of
https://github.com/monero-project/monero.git
synced 2024-11-06 00:17:37 +00:00
f0fc4064a0
Further speedups to icu compilation, it is faster to run the pre-generated configure scripts. Ensure that the native protobuf installation only generates the required libraries and binaries. Disable qt compilation when running travis on windows. Qt is used for lrelease, the travis recipe instead usese the a local installation of lrelease. Remove various packages and options from the travis recipe. Update Readline to version 8.0. The previously used url 404'd sometimes, use the official gnu ftp server instead. Remove unused cmake config.
22 lines
543 B
Makefile
22 lines
543 B
Makefile
packages:=boost openssl zeromq cppzmq expat ldns cppzmq readline 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
|
|
|
|
linux_packages = eudev
|
|
qt_packages = qt
|
|
|
|
ifeq ($(host_os),linux)
|
|
packages += unwind
|
|
packages += sodium
|
|
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
|
|
|