aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/tracy/vcpkg.json
blob: d7ca9688b8cd4951d100eccf6755331334a9567c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
  "name": "tracy",
  "version": "0.11.1",
  "port-version": 2,
  "description": "A real time, nanosecond resolution, remote telemetry, hybrid frame and sampling profiler for games and other applications.",
  "homepage": "https://github.com/wolfpld/tracy",
  "license": "BSD-3-Clause",
  "supports": "!(windows & (arm | uwp))",
  "dependencies": [
    {
      "name": "pthreads",
      "platform": "!windows"
    },
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "crash-handler"
  ],
  "features": {
    "cli-tools": {
      "description": "Build Tracy command-line tools: `capture`, `csvexport`, `import-chrome`, `import-fuchsia` and `update`",
      "supports": "!(windows & x86)",
      "dependencies": [
        {
          "name": "capstone",
          "features": [
            "arm",
            "arm64",
            "x86"
          ]
        },
        {
          "name": "dbus",
          "default-features": false,
          "platform": "!windows"
        },
        "freetype",
        "glfw3",
        {
          "name": "tbb",
          "platform": "!windows"
        }
      ]
    },
    "crash-handler": {
      "description": "Enable crash handler"
    },
    "fibers": {
      "description": "Enable fibers support"
    },
    "gui-tools": {
      "description": "Build Tracy GUI tool: `profiler` (aka `Tracy` executable)",
      "supports": "!(windows & x86)",
      "dependencies": [
        {
          "name": "capstone",
          "features": [
            "arm",
            "arm64",
            "x86"
          ]
        },
        {
          "name": "dbus",
          "default-features": false,
          "platform": "!windows"
        },
        "freetype",
        "glfw3",
        {
          "name": "tbb",
          "platform": "!windows"
        }
      ]
    },
    "on-demand": {
      "description": "Enable on-demand profiling"
    },
    "verbose": {
      "description": "Enables verbose logging"
    }
  }
}