| 12 | { |
| 13 | /// <inheritdoc /> |
| 14 | public override void Setup(BuildOptions options) |
| 15 | { |
| 16 | base.Setup(options); |
| 17 | |
| 18 | options.PrivateDependencies.Add("lz4"); |
| 19 | options.PrivateDependencies.Add("AudioTool"); |
| 20 | options.PrivateDependencies.Add("TextureTool"); |
| 21 | options.PrivateDependencies.Add("ModelTool"); |
| 22 | options.PrivateDependencies.Add("Particles"); |
| 23 | |
| 24 | if (options.Target.IsEditor) |
| 25 | { |
| 26 | options.PrivateDependencies.Add("ShadersCompilation"); |
| 27 | options.PrivateDependencies.Add("MaterialGenerator"); |
| 28 | options.PrivateDependencies.Add("ContentImporters"); |
| 29 | options.PrivateDependencies.Add("ContentExporters"); |
| 30 | options.PrivateDependencies.Add("Graphics"); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | /// <inheritdoc /> |
| 35 | public override void GetFilesToDeploy(List<string> files) |