mirror of
https://git.h3cjp.net/H3cJP/citra.git
synced 2024-12-26 05:06:43 +00:00
13 lines
158 B
Bash
13 lines
158 B
Bash
|
#!/bin/bash -ex
|
||
|
|
||
|
export NDK_CCACHE=$(which ccache)
|
||
|
|
||
|
ccache -s
|
||
|
|
||
|
cd src/android
|
||
|
chmod +x ./gradlew
|
||
|
./gradlew bundleRelease
|
||
|
./gradlew assembleRelease
|
||
|
|
||
|
ccache -s
|