libsodium_wasm_experimental/windowsBuild.sh

17 lines
417 B
Bash
Raw Normal View History

set +daae
#!/bin/sh
#this will hopefully download all konan dependancies that we use in the build scripts
./gradlew multiplatform-crypto-api:build
cd sodiumWrapper
echo "Starting mingw libsodium build"
./makeMingwX86-64.sh
echo "completed libsodium build"
#now we can do the delegated build
cd ..
#./gradlew multiplatform-crypto-delegated:build
#and finally pure build
#./gradlew multiplatform-crypto:build
set +e