Browse Source

Merge pull request #8764 from AJRepo/debian_doc_updates

Debian doc updates
QGC4.4
Don Gagne 5 years ago committed by GitHub
parent
commit
6f98de250d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .travis.yml
  2. 7
      doc/README
  3. 11
      doc/dot

4
.travis.yml

@ -29,13 +29,13 @@ jobs: @@ -29,13 +29,13 @@ jobs:
sudo: required
- stage: "Build"
name: "Android 32 bit"
dist: trusty
dist: xenial
language: android
env: SPEC=android-clang CONFIG=installer BITNESS=32 GSTREAMER_NAME=armv7
sudo: false
- stage: "Build"
name: "Android 64 bit"
dist: trusty
dist: xenial
language: android
env: SPEC=android-clang CONFIG=installer BITNESS=64 GSTREAMER_NAME=arm64
sudo: false

7
doc/README

@ -12,3 +12,10 @@ $doxygen Doxyfile @@ -12,3 +12,10 @@ $doxygen Doxyfile
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

11
doc/dot

@ -34,4 +34,13 @@ do @@ -34,4 +34,13 @@ do
fi
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

Loading…
Cancel
Save