migrating to the latest JUCE version

This commit is contained in:
2022-11-04 23:11:33 +01:00
committed by Nikolai Rodionov
parent 4257a0f8ba
commit faf8f18333
2796 changed files with 888518 additions and 784244 deletions

View File

@ -173,3 +173,8 @@ if __name__ == "__main__":
# Create an extra header file containing the module hierarchy.
with open(os.path.join(args.dest_dir, "juce_modules.dox"), "w") as f:
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))