Skip to content

Commit

Permalink
docs: adapt Doxyfile to new structure
Browse files Browse the repository at this point in the history
  • Loading branch information
bk138 committed Dec 22, 2024
1 parent 411203c commit ca19aa1
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -590,19 +590,19 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.

INPUT = rfb \
client_examples/SDLvncviewer.c \
client_examples/ppmtest.c \
client_examples/vnc2mpg.c \
examples/camera.c \
examples/example.c \
examples/blooptest.c \
examples/filetransfer.c \
examples/fontsel.c \
examples/pnmshow.c \
examples/pnmshow24.c \
examples/storepasswd.c \
examples/vncev.c
INPUT = include/rfb \
examples/client/SDLvncviewer.c \
examples/client/ppmtest.c \
examples/client/vnc2mpg.c \
examples/server/camera.c \
examples/server/example.c \
examples/server/blooptest.c \
examples/server/filetransfer.c \
examples/server/fontsel.c \
examples/server/pnmshow.c \
examples/server/pnmshow24.c \
examples/server/storepasswd.c \
examples/server/vncev.c

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
Expand Down Expand Up @@ -661,8 +661,8 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.

EXCLUDE = rfb/rfbconfig.h \
rfb/default8x16.h
EXCLUDE = include/rfb/rfbconfig.h \
include/rfb/default8x16.h

# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
Expand Down Expand Up @@ -690,8 +690,8 @@ EXCLUDE_SYMBOLS =
# directories that contain example code fragments that are included (see
# the \include command).

EXAMPLE_PATH = client_examples \
examples
EXAMPLE_PATH = examples/client \
examples/server

# If the value of the EXAMPLE_PATH tag contains directories, you can use the
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
Expand Down

0 comments on commit ca19aa1

Please sign in to comment.