mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-22 17:50:05 +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
|