Skip to content

Commit 37cbd1e

Browse files
build(deps): bump third-party/doxyconfig from 671b494 to 6d145da (#87)
Bumps [third-party/doxyconfig](https://github.com/LizardByte/doxyconfig) from `671b494` to `6d145da`. - [Commits](LizardByte/doxyconfig@671b494...6d145da) --- updated-dependencies: - dependency-name: third-party/doxyconfig dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>
1 parent 329cf7a commit 37cbd1e

4 files changed

Lines changed: 10 additions & 22 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ build/
4242
cmake-*/
4343

4444
# doxyconfig
45-
docs/*-doxyconfig*
45+
docs/doxyconfig*
4646

4747
# CTest
4848
Testing/

.readthedocs.yaml

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,15 @@ build:
1010
tools:
1111
python: "miniconda-latest"
1212
commands:
13-
# because we are overriding the build commands, we need to setup the environment ourselves
14-
- cat third-party/doxyconfig/environment.yml
15-
- conda env create --quiet --name ${READTHEDOCS_VERSION} --file third-party/doxyconfig/environment.yml
16-
- npm install "@fortawesome/fontawesome-free"
17-
- mkdir -p ${READTHEDOCS_OUTPUT}html/assets/fontawesome/css
18-
- mkdir -p ${READTHEDOCS_OUTPUT}html/assets/fontawesome/js
19-
- cp node_modules/@fortawesome/fontawesome-free/css/all.min.css ${READTHEDOCS_OUTPUT}html/assets/fontawesome/css
20-
- cp node_modules/@fortawesome/fontawesome-free/js/all.min.js ${READTHEDOCS_OUTPUT}html/assets/fontawesome/js
21-
- cp -r node_modules/@fortawesome/fontawesome-free/webfonts ${READTHEDOCS_OUTPUT}html/assets/fontawesome/
2213
- |
23-
wget "https://raw.githubusercontent.com/LizardByte/.github/master/branding/logos/favicon.ico" \
24-
-O ${READTHEDOCS_OUTPUT}lizardbyte.ico
25-
- |
26-
wget "https://raw.githubusercontent.com/LizardByte/.github/master/branding/logos/logo-128x128.png" \
27-
-O ${READTHEDOCS_OUTPUT}lizardbyte.png
28-
- cp ./third-party/doxyconfig/Doxyfile ./docs/Doxyfile-doxyconfig
29-
- cp ./third-party/doxyconfig/header.html ./docs/header-doxyconfig.html
30-
- cat ./docs/Doxyfile >> ./docs/Doxyfile-doxyconfig
31-
- cd docs && doxygen Doxyfile-doxyconfig
14+
if [ -f readthedocs_build.sh ]; then
15+
doxyconfig_dir="."
16+
else
17+
doxyconfig_dir="./third-party/doxyconfig"
18+
fi
19+
chmod +x "${doxyconfig_dir}/readthedocs_build.sh"
20+
export DOXYCONFIG_DIR="${doxyconfig_dir}"
21+
"${doxyconfig_dir}/readthedocs_build.sh"
3222
3323
# using conda, we can get newer doxygen and graphviz than ubuntu provide
3424
# https://github.com/readthedocs/readthedocs.org/issues/8151#issuecomment-890359661

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ pacman -S \
5353

5454
### Build
5555

56-
@warning{Ensure you are in the build directory created during the clone step earlier before continuing.}
57-
5856
```bash
5957
cmake -G Ninja -B build -S .
6058
ninja -C build

0 commit comments

Comments
 (0)