mirror of
https://git.h3cjp.net/H3cJP/citra.git
synced 2024-12-25 20:56:51 +00:00
13 lines
158 B
Bash
Executable file
13 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
|