11 lines
138 B
Bash
11 lines
138 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Generates docs for Android library
|
||
|
#
|
||
|
|
||
|
CURRENT_DIR="`pwd`"
|
||
|
|
||
|
cd "${CURRENT_DIR}"/../android/ffmpeg-kit-android-lib
|
||
|
|
||
|
doxygen
|