MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Setup

Method Setup

Source/Engine/Core/Core.Build.cs:12–24  ·  view source on GitHub ↗

(BuildOptions options)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 3

ClearMethod · 0.45
AddMethod · 0.45
UseMethod · 0.45

Tested by

no test coverage detected