5f93ec2028
We're not ready to switch to a static qt5 for Linux yet due to missing plugin support. This adds a recipe for building a shared qt4 that we build and link against, but don't distribute. make USE_LINUX_STATIC_QT5=1 can be used to build static qt5 as before.
23 lines
770 B
Makefile
23 lines
770 B
Makefile
packages:=boost openssl gmp
|
|
native_packages := native_ccache native_comparisontool
|
|
|
|
qt_native_packages = native_protobuf
|
|
qt_packages = qrencode protobuf
|
|
|
|
qt46_linux_packages = qt46 expat dbus libxcb xcb_proto libXau xproto freetype libX11 xextproto libXext xtrans libICE libSM
|
|
qt5_linux_packages= qt expat dbus libxcb xcb_proto libXau xproto freetype fontconfig libX11 xextproto libXext xtrans
|
|
|
|
qt_darwin_packages=qt
|
|
qt_mingw32_packages=qt
|
|
|
|
qt_linux_$(USE_LINUX_STATIC_QT5):=$(qt5_linux_packages)
|
|
qt_linux_:=$(qt46_linux_packages)
|
|
qt_linux_packages:=$(qt_linux_$(USE_LINUX_STATIC_QT5))
|
|
|
|
wallet_packages=bdb
|
|
|
|
upnp_packages=miniupnpc
|
|
|
|
ifneq ($(build_os),darwin)
|
|
darwin_native_packages=native_libuuid native_openssl native_cctools native_cdrkit native_libdmg-hfsplus
|
|
endif
|