mirror of
https://github.com/PabloMK7/citra.git
synced 2025-01-05 20:00:31 +00:00
12 lines
158 B
Bash
Executable file
12 lines
158 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
export NDK_CCACHE=$(which ccache)
|
|
|
|
ccache -s
|
|
|
|
cd src/android
|
|
chmod +x ./gradlew
|
|
./gradlew bundleRelease
|
|
./gradlew assembleRelease
|
|
|
|
ccache -s
|