Unverified Commit 6f98de25 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #8764 from AJRepo/debian_doc_updates

Debian doc updates
parents 63cc0014 27242546
...@@ -29,13 +29,13 @@ jobs: ...@@ -29,13 +29,13 @@ jobs:
sudo: required sudo: required
- stage: "Build" - stage: "Build"
name: "Android 32 bit" name: "Android 32 bit"
dist: trusty dist: xenial
language: android language: android
env: SPEC=android-clang CONFIG=installer BITNESS=32 GSTREAMER_NAME=armv7 env: SPEC=android-clang CONFIG=installer BITNESS=32 GSTREAMER_NAME=armv7
sudo: false sudo: false
- stage: "Build" - stage: "Build"
name: "Android 64 bit" name: "Android 64 bit"
dist: trusty dist: xenial
language: android language: android
env: SPEC=android-clang CONFIG=installer BITNESS=64 GSTREAMER_NAME=arm64 env: SPEC=android-clang CONFIG=installer BITNESS=64 GSTREAMER_NAME=arm64
sudo: false sudo: false
......
...@@ -12,3 +12,10 @@ $doxygen Doxyfile ...@@ -12,3 +12,10 @@ $doxygen Doxyfile
The html file index.html should be in doc/html. The html file index.html should be in doc/html.
Debian
=====================
#To build documentation first install dependencies (doxygen, doxyqml and dot):
sudo apt install doxygen graphviz doxyqml
#Then build documentation in the doc/ directory
doxygen ./Doxyfile
...@@ -34,4 +34,13 @@ do ...@@ -34,4 +34,13 @@ do
fi fi
done done
/usr/local/bin/dot ${ARGS} if [[ -x "/usr/local/bin/dot" ]]
then
/usr/local/bin/dot ${ARGS}
elif [[ -x "/usr/bin/dot" ]]
then
/usr/bin/dot ${ARGS}
else
echo "Program dot not found: See file doc/dot"
exit 1
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment