...
This commit is contained in:
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Generates docs for Android Native library
|
||||
#
|
||||
|
||||
CURRENT_DIR="`pwd`"
|
||||
|
||||
cd "${CURRENT_DIR}"/../../android/ffmpeg-kit-android-lib
|
||||
|
||||
doxygen
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Generates javadocs for Android Java library
|
||||
#
|
||||
|
||||
CURRENT_DIR="`pwd`"
|
||||
|
||||
gradle -b "${CURRENT_DIR}"/../../android/ffmpeg-kit-android-lib/build.gradle clean javaDocReleaseGeneration
|
||||
|
||||
rm -rf "${CURRENT_DIR}"/../../docs/android/javadoc
|
||||
|
||||
cp -r "${CURRENT_DIR}"/../../android/ffmpeg-kit-android-lib/build/intermediates/java_doc_dir/release "${CURRENT_DIR}"/../../docs/android/javadoc
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Generates docs for Apple Objective-C library
|
||||
#
|
||||
|
||||
CURRENT_DIR="`pwd`"
|
||||
|
||||
cd "${CURRENT_DIR}"/../../apple
|
||||
|
||||
doxygen
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Generates docs for Linux C++ library
|
||||
#
|
||||
|
||||
CURRENT_DIR="`pwd`"
|
||||
|
||||
cd "${CURRENT_DIR}"/../../linux
|
||||
|
||||
doxygen
|
||||
Reference in New Issue
Block a user