2020-06-11 20:29:50 +02:00
|
|
|
set +daae
|
2020-06-11 18:37:56 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#this will hopefully download all konan dependancies that we use in the build scripts
|
2020-06-11 20:29:50 +02:00
|
|
|
|
2020-06-11 18:37:56 +02:00
|
|
|
./gradlew multiplatform-crypto-api:build
|
|
|
|
cd sodiumWrapper
|
2020-06-11 20:29:50 +02:00
|
|
|
echo "Starting mingw libsodium build"
|
2020-06-11 18:37:56 +02:00
|
|
|
./makeMingwX86-64.sh
|
2020-06-11 20:29:50 +02:00
|
|
|
echo "completed libsodium build"
|
2020-06-11 18:37:56 +02:00
|
|
|
#now we can do the delegated build
|
|
|
|
cd ..
|
2020-06-11 20:29:50 +02:00
|
|
|
#./gradlew multiplatform-crypto-delegated:build
|
2020-06-11 18:37:56 +02:00
|
|
|
#and finally pure build
|
2020-06-11 20:29:50 +02:00
|
|
|
#./gradlew multiplatform-crypto:build
|
2020-06-11 18:37:56 +02:00
|
|
|
set +e
|
|
|
|
|