mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
* add libmd to linked libraries * ios 16 fixes, new moneroc, simulator support * update app version [skip ci] * update monero.com as well [skip ci] * migrate away from {Monero,Wownero,Zano}Wallet.framework Generate .xcframework dynamically Fix mweb requiring manual steps in xcode * fix app_config.sh when .dylib are not yet present * fix typo in model_generator.sh --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
34 lines
No EOL
1 KiB
Bash
Executable file
34 lines
No EOL
1 KiB
Bash
Executable file
#!/bin/sh
|
|
source "$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/functions.sh"
|
|
|
|
. ./config.sh
|
|
# ./install_missing_headers.sh
|
|
# ./build_openssl.sh
|
|
# ./build_boost.sh
|
|
# ./build_sodium.sh
|
|
# ./build_zmq.sh
|
|
# ./build_unbound.sh
|
|
|
|
set -x -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
../prepare_moneroc.sh
|
|
|
|
for COIN in monero wownero zano;
|
|
do
|
|
pushd ../monero_c
|
|
./build_single.sh ${COIN} aarch64-apple-ios -j$MAKE_JOB_COUNT
|
|
./build_single.sh ${COIN} aarch64-apple-iossimulator -j$MAKE_JOB_COUNT
|
|
popd
|
|
done
|
|
|
|
unxz -fk ../monero_c/release/monero/aarch64-apple-ios_libwallet2_api_c.dylib.xz
|
|
unxz -fk ../monero_c/release/wownero/aarch64-apple-ios_libwallet2_api_c.dylib.xz
|
|
unxz -fk ../monero_c/release/zano/aarch64-apple-ios_libwallet2_api_c.dylib.xz
|
|
|
|
unxz -fk ../monero_c/release/monero/aarch64-apple-iossimulator_libwallet2_api_c.dylib.xz
|
|
unxz -fk ../monero_c/release/wownero/aarch64-apple-iossimulator_libwallet2_api_c.dylib.xz
|
|
unxz -fk ../monero_c/release/zano/aarch64-apple-iossimulator_libwallet2_api_c.dylib.xz
|
|
|
|
./gen_framework.sh |