mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
7 lines
178 B
Bash
7 lines
178 B
Bash
#!/bin/sh
|
|
|
|
CORES=$(nproc) || echo 4
|
|
mkdir -p build-android && cd build-android
|
|
cmake -DBUILD_ANDROID=On -DANDROID_ABI=armeabi-v7a -DANDROID_NATIVE_API_LEVEL=23 ..
|
|
make -j $CORES
|