Skip to content

Commit 0767ece

Browse files
authored
Merge pull request #275 from sblondon/change-doxygen-output-directory
Move generated documentation in dedicated directory
2 parents 3e11ca5 + 30f71a2 commit 0767ece

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/doxygen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ jobs:
2929
uses: peaceiris/actions-gh-pages@v3
3030
with:
3131
github_token: ${{ secrets.GITHUB_TOKEN }}
32-
publish_dir: ./doc/html
32+
publish_dir: ./doc/build/html
3333
force_orphan: true

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
doc
1+
doc/build
22

33
*.o
44
*.a

Doxyfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ PROJECT_LOGO =
6868
# entered, it will be relative to the location where doxygen was started. If
6969
# left blank the current directory will be used.
7070

71-
OUTPUT_DIRECTORY = doc
71+
OUTPUT_DIRECTORY = doc/build
7272

7373
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096
7474
# sub-directories (in 2 levels) under the output directory of each output format
@@ -2416,7 +2416,7 @@ TAGFILES =
24162416
# tag file that is based on the input files it reads. See section "Linking to
24172417
# external documentation" for more information about the usage of tag files.
24182418

2419-
GENERATE_TAGFILE = doc/pspsdk.tag
2419+
GENERATE_TAGFILE = doc/build/pspsdk.tag
24202420

24212421
# If the ALLEXTERNALS tag is set to YES, all external classes and namespaces
24222422
# will be listed in the class and namespace index. If set to NO, only the

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ DX_RTF_FEATURE(OFF)
5050
DX_XML_FEATURE(OFF)
5151
DX_PDF_FEATURE(OFF)
5252
DX_PS_FEATURE(OFF)
53-
DX_INIT_DOXYGEN(PSPSDK, Doxyfile, doc)
53+
DX_INIT_DOXYGEN(PSPSDK, Doxyfile, doc/build)
5454

5555
# Override the default prefix to point to where the pspdev tools should be installed.
5656
# The binaries will end up in $prefix/bin, but pspsdk itself will end up in $prefix/$target/sdk.

doc/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)