14 lines
358 B
Bash
Raw Normal View History

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
./makeIosWatchosTvos.sh
2020-06-10 22:41:53 +02:00
#now we can do the delegated build
cd ..
#libsodium bindings
./gradlew multiplatform-crypto-libsodium-bindings:build
set +e