11 lines
117 B
Bash
11 lines
117 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Generates docs for Objective-C library
|
||
|
#
|
||
|
|
||
|
CURRENT_DIR="`pwd`"
|
||
|
|
||
|
cd "${CURRENT_DIR}"/../apple
|
||
|
|
||
|
doxygen
|