Skip to content

Commit d190c37

Browse files
author
Patrick Rye
committed
More Doxy Stuff
Fixed some stuff with the doxy files
1 parent 965dc65 commit d190c37

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ _start-cmd.bat
9090
.localconfig
9191

9292
#Doxygen Stuff
93-
/project/doxygen/html/
93+
/html/

project/doxygen/Doxyfile

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ PROJECT_LOGO = C:/Users/Patrick.Rye/Documents/GitHub/Cannon-Simulation
5858
# entered, it will be relative to the location where doxygen was started. If
5959
# left blank the current directory will be used.
6060

61-
OUTPUT_DIRECTORY = .
61+
OUTPUT_DIRECTORY = ../../html
6262

6363
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
6464
# directories (in 2 levels) under the output directory of each output format and
@@ -68,7 +68,7 @@ OUTPUT_DIRECTORY = .
6868
# performance problems for the file system.
6969
# The default value is: NO.
7070

71-
CREATE_SUBDIRS = NO
71+
CREATE_SUBDIRS = YES
7272

7373
# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
7474
# characters to appear in the names of generated files. If set to NO, non-ASCII
@@ -168,7 +168,7 @@ STRIP_FROM_INC_PATH =
168168
# support long names like on DOS, Mac, or CD-ROM.
169169
# The default value is: NO.
170170

171-
SHORT_NAMES = NO
171+
SHORT_NAMES = YES
172172

173173
# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
174174
# first line (until the first dot) of a Javadoc-style comment as the brief
@@ -767,8 +767,8 @@ WARN_LOGFILE = C:\Users\Patrick.Rye\Documents\GitHub\Cannon-Simulation
767767

768768
INPUT = ../../src \
769769
../../ChangesLog.md \
770-
../../README.md \
771-
../../LICENSE.md
770+
../../LICENSE.md \
771+
../../README.md
772772

773773
# This tag can be used to specify the character encoding of the source files
774774
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
@@ -909,7 +909,7 @@ FILTER_SOURCE_PATTERNS =
909909
# (index.html). This can be useful if you have a project on for instance GitHub
910910
# and want to reuse the introduction page also for the doxygen output.
911911

912-
USE_MDFILE_AS_MAINPAGE =
912+
USE_MDFILE_AS_MAINPAGE = ../../README.md
913913

914914
#---------------------------------------------------------------------------
915915
# Configuration options related to source browsing
@@ -922,7 +922,7 @@ USE_MDFILE_AS_MAINPAGE =
922922
# also VERBATIM_HEADERS is set to NO.
923923
# The default value is: NO.
924924

925-
SOURCE_BROWSER = NO
925+
SOURCE_BROWSER = YES
926926

927927
# Setting the INLINE_SOURCES tag to YES will include the body of functions,
928928
# classes and enums directly into the documentation.
@@ -1141,15 +1141,15 @@ HTML_EXTRA_FILES =
11411141
# Minimum value: 0, maximum value: 359, default value: 220.
11421142
# This tag requires that the tag GENERATE_HTML is set to YES.
11431143

1144-
HTML_COLORSTYLE_HUE = 227
1144+
HTML_COLORSTYLE_HUE = 210
11451145

11461146
# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
11471147
# in the HTML output. For a value of 0 the output will use grayscales only. A
11481148
# value of 255 will produce the most vivid colors.
11491149
# Minimum value: 0, maximum value: 255, default value: 100.
11501150
# This tag requires that the tag GENERATE_HTML is set to YES.
11511151

1152-
HTML_COLORSTYLE_SAT = 19
1152+
HTML_COLORSTYLE_SAT = 67
11531153

11541154
# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
11551155
# luminance component of the colors in the HTML output. Values below 100
@@ -1160,7 +1160,7 @@ HTML_COLORSTYLE_SAT = 19
11601160
# Minimum value: 40, maximum value: 240, default value: 80.
11611161
# This tag requires that the tag GENERATE_HTML is set to YES.
11621162

1163-
HTML_COLORSTYLE_GAMMA = 147
1163+
HTML_COLORSTYLE_GAMMA = 60
11641164

11651165
# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
11661166
# page will contain the date and time when the page was generated. Setting this
@@ -2019,7 +2019,8 @@ INCLUDE_FILE_PATTERNS =
20192019
# recursively expanded use the := operator instead of the = operator.
20202020
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
20212021

2022-
PREDEFINED = WXUNUSED()=
2022+
PREDEFINED = WXUNUSED()= \
2023+
DEFINED_BUILD_MODE_PRIVATE
20232024

20242025
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
20252026
# tag can be used to specify a list of macro names that should be expanded. The
@@ -2103,7 +2104,7 @@ PERL_PATH = /usr/bin/perl
21032104
# powerful graphs.
21042105
# The default value is: YES.
21052106

2106-
CLASS_DIAGRAMS = YES
2107+
CLASS_DIAGRAMS = NO
21072108

21082109
# You can define message sequence charts within doxygen comments using the \msc
21092110
# command. Doxygen will then run the mscgen tool (see:

0 commit comments

Comments
 (0)