Skip to content
This repository was archived by the owner on Apr 13, 2021. It is now read-only.

Commit 2ef9270

Browse files
committed
Make Travis check doxygen
1 parent 5997479 commit 2ef9270

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ addons:
1515
- cmake
1616
- check
1717
- lcov
18+
- doxygen
19+
- texlive
20+
- texlive-pictures
21+
- pgf
1822
# Required for gcc-arm-embedded
1923
- lib32bz2-1.0
2024
- lib32ncurses5
@@ -37,6 +41,7 @@ script:
3741
- cd build/
3842
- cmake -DCMAKE_BUILD_TYPE=Coverage ../
3943
- make
44+
- make check-style
4045
# Install locally to avoid sudo
4146
- make DESTDIR="./install" install
4247
# Test ARM cross-compile

DEVELOPMENT.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ Tools needed:
77
- doxygen
88
- convert from ImageMagick
99
- pip install gcovr diff-cover
10-
- pdflatex from TeX Live
10+
- texlive and texlive-pictures
11+
- pgf (for missing TeX dependency)
1112
- libcheck (otherwise `make` will not run unit tests)
1213

1314
To get started, run::

include/libswiftnav/logging.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ do { \
9090
} while (0)
9191

9292
/** Log a debug message indicating entry to a function.
93-
* Logs a debug message of the form `<function_name>` to indicate entry to a
93+
* Logs a debug message of the form `\<function_name\>` to indicate entry to a
9494
* function. `function_name` is automatically filled in with the name of the
9595
* current function by GCC magic.
9696
*/
@@ -102,7 +102,7 @@ do { \
102102
} while (0)
103103

104104
/** Log a debug message indicating exit to a function.
105-
* Logs a debug message of the form `</function_name>` to indicate exit from a
105+
* Logs a debug message of the form `\</function_name\>` to indicate exit from a
106106
* function. `function_name` is automatically filled in with the name of the
107107
* current function by GCC magic.
108108
*/

0 commit comments

Comments
 (0)