(BuildOptions options)
| 10 | { |
| 11 | /// <inheritdoc /> |
| 12 | public override void Setup(BuildOptions options) |
| 13 | { |
| 14 | base.Setup(options); |
| 15 | |
| 16 | // Don't reference anything from default modules |
| 17 | options.PrivateDependencies.Clear(); |
| 18 | |
| 19 | options.PublicDependencies.Add("Platform"); |
| 20 | options.PublicDependencies.Add("fmt"); |
| 21 | |
| 22 | if (Profiler.Use(options)) |
| 23 | options.PublicDependencies.Add("Profiler"); |
| 24 | } |
| 25 | } |