Skip to content

Docs v3 notes and pass #2503

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Feb 18, 2025
Merged
Prev Previous commit
Next Next commit
tools: speed up docs build
  • Loading branch information
julianoes committed Feb 18, 2025

Verified

This commit was signed with the committer’s verified signature.
julianoes Julian Oes
commit 1f1d298a971d9cb4d666f692f2c264c347d4e23b
4 changes: 2 additions & 2 deletions tools/generate_docs.sh
Original file line number Diff line number Diff line change
@@ -44,8 +44,8 @@ if [ "$skip_checks" = false ]; then
fi

# Build and install locally.
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} -B${BUILD_DIR} -H.;
make -C${BUILD_DIR} install -j4;
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} -B${BUILD_DIR} -H.
make -C${BUILD_DIR} install -j$(nproc --all)

return_result=0
# Doxygen likes to run where the source is (because INPUT in .doxygen is empty),