1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Documentation: Fix paths to auxiliary documents

This commit is contained in:
reuk 2021-12-08 14:13:03 +00:00
parent 7b45b1d606
commit 5c1e31a995
2 changed files with 7 additions and 2 deletions

View file

@ -802,8 +802,8 @@ WARN_LOGFILE =
# Note: If this tag is empty the current directory is searched. # Note: If this tag is empty the current directory is searched.
INPUT = build \ INPUT = build \
"../JUCE Module Format.md" \ "build/JUCE Module Format.md" \
"../CMake API.md" "build/CMake API.md"
# This tag can be used to specify the character encoding of the source files # This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses

View file

@ -173,3 +173,8 @@ if __name__ == "__main__":
# Create an extra header file containing the module hierarchy. # Create an extra header file containing the module hierarchy.
with open(os.path.join(args.dest_dir, "juce_modules.dox"), "w") as f: with open(os.path.join(args.dest_dir, "juce_modules.dox"), "w") as f:
f.write("\r\n\r\n".join(module_definitions)) f.write("\r\n\r\n".join(module_definitions))
# Copy markdown docs
for name in ["JUCE Module Format.md", "CMake API.md"]:
shutil.copyfile(os.path.join(args.source_dir, "..", "docs", name),
os.path.join(args.dest_dir, name))