2020-06-10 22:41:53 +02:00
|
|
|
set -e
|
|
|
|
#!/bin/sh
|
|
|
|
#this will hopefully download all konan dependancies that we use in the build scripts
|
|
|
|
./gradlew multiplatform-crypto-api:build
|
|
|
|
#now let's build linux deps
|
|
|
|
cd sodiumWrapper
|
2020-06-10 23:07:48 +02:00
|
|
|
./makeMacosX86-64.sh
|
2020-10-18 23:29:21 +02:00
|
|
|
./makeIosWatchosTvos.sh
|
2020-06-10 22:41:53 +02:00
|
|
|
#now we can do the delegated build
|
|
|
|
cd ..
|
2020-10-18 23:29:21 +02:00
|
|
|
#libsodium bindings
|
2020-10-20 19:34:22 +02:00
|
|
|
./gradlew multiplatform-crypto-libsodium-bindings:build
|
|
|
|
set +e
|