Skip to content

Commit

Permalink
Fix doxygen start page (#141)
Browse files Browse the repository at this point in the history
* Fix doxygen start page

* add build missing for codecov

* Add --build-missing to codeql

---------

Co-authored-by: Philipp Basler <[email protected]>
  • Loading branch information
phbasler and Philipp Basler authored May 6, 2024
1 parent 3980d76 commit de18540
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .codecov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ ignore:
- "src/utility/spline/spline.cpp"
- "src/utility/asciiplotter/asciiplotter.cpp"
- "example/**"
- ".github"
- "**/README.md"
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- name: Install conan
run: pip install conan>2
- run: python3 Setup.py --options EnableCoverage=True CompileBaryo=True UseVectorization=False
- run: python3 Setup.py --options EnableCoverage=True CompileBaryo=True UseVectorization=False --build-missing

- name: Set cmake preset name
run: python3 .github/GetProfile.py
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
id: cpu-cores
if: matrix.language == 'cpp'
- name: Setup
run: python3 Setup.py --options CompileBaryo=True
run: python3 Setup.py --options CompileBaryo=True --build-missing
if: matrix.language == 'cpp'

- name: Set cmake preset name
Expand Down
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -203,13 +203,14 @@ if(BSMPT_IS_TOPLEVEL)
set(DOXYGEN_EXCLUDE
${CMAKE_CURRENT_SOURCE_DIR}/src/Kfactors/Kfunctions_grid_Part1.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/Kfactors/Kfunctions_grid_Part2.cpp)
set(DOXYGEN_EXCLUDE_PATTERNS ${CMAKE_CURRENT_SOURCE_DIR}/src/*/README.md)
set(DOXYGEN_PROJECT_BRIEF ${CMAKE_PROJECT_DESCRIPTION})
set(DOXYGEN_EXTRACT_PRIVATE YES)
set(DOXYGEN_GENERATE_TREEVIEW YES)
set(DOXYGEN_DISTRIBUTE_GROUP_DOC YES)
set(DOXYGEN_WARN_IF_UNDOCUMENTED YES)
set(DOXYGEN_WARN_IF_DOC_ERROR YES)
set(DOXYGEN_USE_MDFILE_AS_MAINPAGE README.md)
set(DOXYGEN_USE_MDFILE_AS_MAINPAGE ${CMAKE_CURRENT_SOURCE_DIR}/README.md)

doxygen_add_docs(
doc
Expand Down

0 comments on commit de18540

Please sign in to comment.