Skip to content

Commit bf16e55

Browse files
authored
bugfix doxygen not scanning source files (#61)
* fix doxygen not scanning source files * rm unnecessary cd Co-authored-by: Wolf Lammen <[email protected]>
1 parent b77a7dc commit bf16e55

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,6 @@ then
133133
exit 1
134134
fi
135135

136-
cd "$build_dir/src"
137-
138136
# create a Doxyfile.local and use it for creation of documentation locally
139137

140138
# start with the settings given by the distribution
@@ -149,8 +147,10 @@ then
149147
cat "$top_dir/Doxyfile" >> Doxyfile.local
150148
fi
151149

152-
# ... except for the destination directory. Force this to the build folder.
150+
# ... except for the source/destination directory. Force this to folders
151+
# based on this build.
153152
echo "OUTPUT_DIRECTORY = \"$build_dir\"" >> Doxyfile.local
153+
echo "INPUT = \"$src_dir\"" >> Doxyfile.local
154154

155155
# make sure the logo is in the build directory
156156
cp --force --symbolic-link "$top_dir/doc/Metamath.png" .

0 commit comments

Comments
 (0)