Add support for multi-threaded scripting API headers parsing

This commit is contained in:
Wojtek Figat
2021-02-15 15:04:23 +01:00
parent cdd68c9a89
commit 5714741a5d
4 changed files with 331 additions and 312 deletions

View File

@@ -13,5 +13,14 @@ namespace Flax.Build.Bindings
{
return "module " + Name;
}
/// <inheritdoc />
public override void Init(Builder.BuildData buildData)
{
base.Init(buildData);
// Sort module files to prevent bindings rebuild due to order changes (list might be created in async)
Children.Sort();
}
}
}