Skip to content

Commit

Permalink
Call 'make', not doxygen.
Browse files Browse the repository at this point in the history
  • Loading branch information
jtv committed Mar 31, 2024
1 parent 8f42e2b commit aa80a69
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
# C++23: Upgrade C++ version.
check_call(
[source_dir / 'configure', 'CXXFLAGS=-std=c++20 -O0'], cwd=build_dir)
check_call('doxygen', cwd=(build_dir / 'doc'))
#check_call('doxygen', cwd=(build_dir / 'doc'))
check_call(['make'], cwd=(build_dir / 'doc'))


# -- General configuration ------------------------------------------------
Expand Down

0 comments on commit aa80a69

Please sign in to comment.