mirror of
https://github.com/godotengine/godot-contributing-docs.git
synced 2026-02-25 02:34:39 +03:00
Mark the Godot Areas Sphinx extension as parallel-safe for faster builds
This allows builds made with `-jN` to be faster.
This commit is contained in:
@@ -115,3 +115,8 @@ class TeamRole(XRefRole):
|
|||||||
def setup(app):
|
def setup(app):
|
||||||
app.add_directive('gdareatable', TableDirective)
|
app.add_directive('gdareatable', TableDirective)
|
||||||
app.add_role('team', TeamRole())
|
app.add_role('team', TeamRole())
|
||||||
|
|
||||||
|
return {
|
||||||
|
"parallel_read_safe": True,
|
||||||
|
"parallel_write_safe": True,
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user