-
Notifications
You must be signed in to change notification settings - Fork 36.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Make packages related variables simply expanded ones
- Loading branch information
Showing
3 changed files
with
25 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,38 @@ | ||
packages:=boost libevent | ||
packages := boost libevent | ||
|
||
qrencode_linux_packages = qrencode | ||
qrencode_android_packages = qrencode | ||
qrencode_darwin_packages = qrencode | ||
qrencode_mingw32_packages = qrencode | ||
qrencode_linux_packages := qrencode | ||
qrencode_android_packages := qrencode | ||
qrencode_darwin_packages := qrencode | ||
qrencode_mingw32_packages := qrencode | ||
|
||
qt_linux_packages:=qt expat libxcb xcb_proto libXau xproto freetype fontconfig libxkbcommon libxcb_util libxcb_util_render libxcb_util_keysyms libxcb_util_image libxcb_util_wm | ||
qt_android_packages=qt | ||
qt_darwin_packages=qt | ||
qt_mingw32_packages=qt | ||
qt_linux_packages := qt expat libxcb xcb_proto libXau xproto freetype fontconfig libxkbcommon libxcb_util libxcb_util_render libxcb_util_keysyms libxcb_util_image libxcb_util_wm | ||
qt_android_packages := qt | ||
|
||
bdb_packages=bdb | ||
sqlite_packages=sqlite | ||
qt_darwin_packages := qt | ||
qt_mingw32_packages := qt | ||
|
||
zmq_packages=zeromq | ||
bdb_packages := bdb | ||
sqlite_packages := sqlite | ||
|
||
upnp_packages=miniupnpc | ||
natpmp_packages=libnatpmp | ||
zmq_packages := zeromq | ||
|
||
multiprocess_packages = libmultiprocess capnp | ||
multiprocess_native_packages = native_libmultiprocess native_capnp | ||
upnp_packages := miniupnpc | ||
natpmp_packages := libnatpmp | ||
|
||
usdt_linux_packages=systemtap | ||
multiprocess_packages := libmultiprocess capnp | ||
multiprocess_native_packages := native_libmultiprocess native_capnp | ||
|
||
darwin_native_packages = native_ds_store native_mac_alias | ||
usdt_linux_packages := systemtap | ||
|
||
darwin_native_packages := native_ds_store native_mac_alias | ||
|
||
$(host_arch)_$(host_os)_native_packages += native_b2 | ||
|
||
ifneq ($(build_os),darwin) | ||
darwin_native_packages += native_cctools native_libtapi native_libdmg-hfsplus | ||
|
||
ifeq ($(strip $(FORCE_USE_SYSTEM_CLANG)),) | ||
darwin_native_packages+= native_clang | ||
darwin_native_packages += native_clang | ||
endif | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters