summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorAnder Conselvan de Oliveira <ander.deoliveira@mapbox.com>2019-03-04 15:13:31 +0200
committerAnder Conselvan de Oliveira <ander.deoliveira@mapbox.com>2019-03-13 15:06:56 +0200
commit7bac0c7cbac6333b36a91387e2cf2751b048c869 (patch)
tree8ed1f8f42af317c5cf2ec3bd8d0cf8a56dbcfff3 /cmake
parent3c4d41559a1e1b4d53a9fc089d3f6919441298d0 (diff)
downloadqtlocation-mapboxgl-7bac0c7cbac6333b36a91387e2cf2751b048c869.tar.gz
[build] Check documentation coverage on CI
Add a CI target that checks documentation coverage and reports back to github. While at it, change the output of doxy-coverage to a json file so it is easy to consume.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/doxygen.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/doxygen.cmake b/cmake/doxygen.cmake
index c7e2fab3c4..b61e878f88 100644
--- a/cmake/doxygen.cmake
+++ b/cmake/doxygen.cmake
@@ -11,7 +11,7 @@ if(DOXYGEN_FOUND)
)
add_custom_target(doxygen_coverage
- COMMAND ${CMAKE_SOURCE_DIR}/scripts/doxy-coverage.py --noerror "${CMAKE_BINARY_DIR}/docs/xml"
+ COMMAND ${CMAKE_SOURCE_DIR}/scripts/doxy-coverage.py --quiet --noerror --json="${CMAKE_BINARY_DIR}/doxygen-coverage.json" "${CMAKE_BINARY_DIR}/docs/xml"
COMMENT "Checking documentation coverage"
DEPENDS generate_xml_doxygen
)